for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FormHelper;
/**
* Class AbstractFormHelper
* @package FormHelper
*/
abstract class AbstractFormHelper
{
* @param $data
* @return $this
public abstract function set($data);
* @return mixed
public abstract function get();
}