for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPSemVerChecker\Operation;
use PhpParser\Node\Stmt\Function_;
use PHPSemVerChecker\Node\Statement\Function_ as PFunction;
class FunctionImplementationChanged extends FunctionOperationDelta {
/**
* @var string
*/
protected $code = 'V004';
protected $reason = 'Function implementation changed.';
}