silverstripe-framework/tests/php/Core/Injector/AopProxyServiceTest/ProxyTestObject.php

12 lines
160 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Core\Tests\Injector\AopProxyServiceTest;
class ProxyTestObject
{
public function myMethod()
{
return 42;
}
}