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 method using dynamic arguments
*
* @author Marco Pivetta <[email protected]>
* @license MIT
*/
class ClassWithDynamicArgumentsMethod
{
* @param mixed ...$args
* @return mixed[]
public function dynamicArgumentsMethod()
return func_get_args();
}