Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
ec1dfeaa
Commit
ec1dfeaa
authored
Jul 29, 2013
by
Suralc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignoring javascript generating methods in coverage for now.
parent
fc1d2af3
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
0 deletions
+10
-0
BooleanValidator.php
framework/yii/validators/BooleanValidator.php
+1
-0
CaptchaValidator.php
framework/yii/validators/CaptchaValidator.php
+1
-0
CompareValidator.php
framework/yii/validators/CompareValidator.php
+1
-0
EmailValidator.php
framework/yii/validators/EmailValidator.php
+1
-0
NumberValidator.php
framework/yii/validators/NumberValidator.php
+1
-0
RangeValidator.php
framework/yii/validators/RangeValidator.php
+1
-0
RegularExpressionValidator.php
framework/yii/validators/RegularExpressionValidator.php
+1
-0
RequiredValidator.php
framework/yii/validators/RequiredValidator.php
+1
-0
StringValidator.php
framework/yii/validators/StringValidator.php
+1
-0
UrlValidator.php
framework/yii/validators/UrlValidator.php
+1
-0
No files found.
framework/yii/validators/BooleanValidator.php
View file @
ec1dfeaa
...
...
@@ -82,6 +82,7 @@ class BooleanValidator extends Validator
* @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.
* @return string the client-side validation script.
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/CaptchaValidator.php
View file @
ec1dfeaa
...
...
@@ -97,6 +97,7 @@ class CaptchaValidator extends Validator
* @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.
* @return string the client-side validation script.
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/CompareValidator.php
View file @
ec1dfeaa
...
...
@@ -181,6 +181,7 @@ class CompareValidator extends Validator
* @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.
* @throws InvalidConfigException if CompareValidator::operator is invalid
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/EmailValidator.php
View file @
ec1dfeaa
...
...
@@ -122,6 +122,7 @@ class EmailValidator extends Validator
* @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.
* @return string the client-side validation script.
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/NumberValidator.php
View file @
ec1dfeaa
...
...
@@ -117,6 +117,7 @@ class NumberValidator extends Validator
* @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.
* @return string the client-side validation script.
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/RangeValidator.php
View file @
ec1dfeaa
...
...
@@ -84,6 +84,7 @@ class RangeValidator extends Validator
* @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.
* @return string the client-side validation script.
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/RegularExpressionValidator.php
View file @
ec1dfeaa
...
...
@@ -83,6 +83,7 @@ class RegularExpressionValidator extends Validator
* containing a model form with this validator applied.
* @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
)
{
...
...
framework/yii/validators/RequiredValidator.php
View file @
ec1dfeaa
...
...
@@ -105,6 +105,7 @@ class RequiredValidator extends Validator
* @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.
* @return string the client-side validation script.
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/StringValidator.php
View file @
ec1dfeaa
...
...
@@ -129,6 +129,7 @@ class StringValidator extends Validator
* @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.
* @return string the client-side validation script.
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
framework/yii/validators/UrlValidator.php
View file @
ec1dfeaa
...
...
@@ -121,6 +121,7 @@ class UrlValidator extends Validator
* containing a model form with this validator applied.
* @return string the client-side validation script.
* @see \yii\Web\ActiveForm::enableClientValidation
* @codeCoverageIgnore
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment