D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
hamcrest
/
hamcrest-php
/
tests
/
Hamcrest
/
Core
/
Filename :
SampleBaseClass.php
back
Copy
<?php namespace Hamcrest\Core; class SampleBaseClass { private $_arg; public function __construct($arg) { $this->_arg = $arg; } public function __toString() { return $this->_arg; } }