File "SampleBaseClass.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core/SampleBaseClass.php
File size: 231 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Hamcrest\Core;

class SampleBaseClass
{

    private $_arg;

    public function __construct($arg)
    {
        $this->_arg = $arg;
    }

    public function __toString()
    {
        return $this->_arg;
    }
}