Files
wiosna-dev_common-library/tests/Utilities/Reflection/J.php

30 lines
575 B
PHP

<?php
/**
* (c) Meritoo.pl, http://www.meritoo.pl
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Meritoo\Test\Common\Utilities\Reflection;
/**
* The J class.
* Used for testing the Reflection class.
*
* @author Meritoo <github@meritoo.pl>
* @copyright Meritoo <http://www.meritoo.pl>
*/
class J
{
private $f;
/**
* Class constructor
*/
public function __construct()
{
$this->f = new F(1000, 'New York', 'USA', 'john.scott');
}
}