for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace Respect\Validation\Exceptions;
class EqualsException extends ValidationException
{
const EQUALS = 0;
const IDENTICAL = 1;
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::EQUALS => '{{name}} must be equals {{compareTo}}',
self::IDENTICAL => '{{name}} must be identical as {{compareTo}}',
),
self::MODE_NEGATIVE => array(
self::EQUALS => '{{name}} must not be equals {{compareTo}}',
self::IDENTICAL => '{{name}} must not be identical as {{compareTo}}',
);
public function chooseTemplate()
return $this->getParam('identical') ? static::IDENTICAL : static::EQUALS;
}