for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpcsDiff\Validator;
abstract class AbstractValidator
{
/**
* @var mixed
*/
protected $data;
* @param mixed $data
public function __construct($data)
$this->data = $data;
}