for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fixtures\Prophecy;
/**
* @method string name(string $gender = null)
* @method mixed randomElement(array $array = array('a', 'b', 'c'))
*/
class WithPhpdocClass
{
public function __call($name, $arguments)
// TODO: Implement __call() method.
}