for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Command runner
*
* @author Matthias Gisder <[email protected]>
* @copyright 2014 inGenerator Ltd
* @licence BSD
*/
namespace Ingenerator\RunSingle;
class CommandRunner
{
* @param string $command
* @return integer
integer|null
This check compares the return type specified in the @return annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.
@return
public function execute($command)
\system($command, $exit_code);
return $exit_code;
}
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.