for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebStream\Annotation\Attributes\Ext\ValidateRule;
/**
* Required
* @author Ryuichi TANAKA.
* @since 2015/03/31
* @version 0.4
*/
class Required implements IValidate
{
* {@inheritdoc}
public function isValid($value, $rule)
return $value !== null && $value !== "";
}