Commit 5cf99922 by Alexander Makarov

Removed @codeCoverageIgnore

parent d75ad87e
...@@ -101,7 +101,6 @@ class CaptchaValidator extends Validator ...@@ -101,7 +101,6 @@ class CaptchaValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -82,7 +82,6 @@ class BooleanValidator extends Validator ...@@ -82,7 +82,6 @@ class BooleanValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -182,7 +182,6 @@ class CompareValidator extends Validator ...@@ -182,7 +182,6 @@ class CompareValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @throws InvalidConfigException if CompareValidator::operator is invalid * @throws InvalidConfigException if CompareValidator::operator is invalid
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -64,9 +64,7 @@ class EmailValidator extends Validator ...@@ -64,9 +64,7 @@ class EmailValidator extends Validator
{ {
parent::init(); parent::init();
if ($this->enableIDN && !function_exists('idn_to_ascii')) { if ($this->enableIDN && !function_exists('idn_to_ascii')) {
// @codeCoverageIgnoreStart
throw new InvalidConfigException('In order to use IDN validation intl extension must be installed and enabled.'); throw new InvalidConfigException('In order to use IDN validation intl extension must be installed and enabled.');
// @codeCoverageIgnoreEnd
} }
if ($this->message === null) { if ($this->message === null) {
$this->message = Yii::t('yii', '{attribute} is not a valid email address.'); $this->message = Yii::t('yii', '{attribute} is not a valid email address.');
...@@ -124,7 +122,6 @@ class EmailValidator extends Validator ...@@ -124,7 +122,6 @@ class EmailValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -117,7 +117,6 @@ class NumberValidator extends Validator ...@@ -117,7 +117,6 @@ class NumberValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -84,7 +84,6 @@ class RangeValidator extends Validator ...@@ -84,7 +84,6 @@ class RangeValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -81,8 +81,6 @@ class RegularExpressionValidator extends Validator ...@@ -81,8 +81,6 @@ class RegularExpressionValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @throws InvalidConfigException if the "pattern" is not a valid regular expression
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -105,7 +105,6 @@ class RequiredValidator extends Validator ...@@ -105,7 +105,6 @@ class RequiredValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -145,7 +145,6 @@ class StringValidator extends Validator ...@@ -145,7 +145,6 @@ class StringValidator extends Validator
* @param \yii\base\View $view the view object that is going to be used to render views or view files * @param \yii\base\View $view the view object that is going to be used to render views or view files
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -54,9 +54,7 @@ class UrlValidator extends Validator ...@@ -54,9 +54,7 @@ class UrlValidator extends Validator
{ {
parent::init(); parent::init();
if ($this->enableIDN && !function_exists('idn_to_ascii')) { if ($this->enableIDN && !function_exists('idn_to_ascii')) {
// @codeCoverageIgnoreStart
throw new InvalidConfigException('In order to use IDN validation intl extension must be installed and enabled.'); throw new InvalidConfigException('In order to use IDN validation intl extension must be installed and enabled.');
// @codeCoverageIgnoreEnd
} }
if ($this->message === null) { if ($this->message === null) {
$this->message = Yii::t('yii', '{attribute} is not a valid URL.'); $this->message = Yii::t('yii', '{attribute} is not a valid URL.');
...@@ -121,7 +119,6 @@ class UrlValidator extends Validator ...@@ -121,7 +119,6 @@ class UrlValidator extends Validator
* containing a model form with this validator applied. * containing a model form with this validator applied.
* @return string the client-side validation script. * @return string the client-side validation script.
* @see \yii\Web\ActiveForm::enableClientValidation * @see \yii\Web\ActiveForm::enableClientValidation
* @codeCoverageIgnore
*/ */
public function clientValidateAttribute($object, $attribute, $view) public function clientValidateAttribute($object, $attribute, $view)
{ {
......
...@@ -4,9 +4,6 @@ namespace yiiunit\data\validators\models; ...@@ -4,9 +4,6 @@ namespace yiiunit\data\validators\models;
use yii\base\Model; use yii\base\Model;
/**
* @codeCoverageIgnore
*/
class FakedValidationModel extends Model class FakedValidationModel extends Model
{ {
public $val_attr_a; public $val_attr_a;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment