for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author stev leibelt <[email protected]>
* @since 2013-08-12
*/
namespace Example\Validator;
use Net\Bazzline\Component\Requirement\AbstractItem;
* Class AbstractTableValidator
*
* @package Example\Validator
abstract class AbstractTableValidator extends AbstractItem
{
* @var Table
protected $table;
* @param Table $table
* @return $this
public function setTable(Table $table)
$this->table = $table;
return $this;
}