for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset;
/**
* Class with a `self` type hint in a method - used to test overriding method with the `self` type hint in generators
*
* @author Marco Pivetta <[email protected]>
* @license MIT
*/
class ClassWithSelfHint
{
public function selfHintMethod(self $parameter)
return $parameter;
}