??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: SampleBaseClass.php
<?php namespace Hamcrest\Core; class SampleBaseClass { private $_arg; public function __construct($arg) { $this->_arg = $arg; } public function __toString() { return $this->_arg; } }