Skip to content

Commit e99c094

Browse files
author
Craig Manley
committed
Convert encoding to UTF-8
1 parent df20232 commit e99c094

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

src/Spec.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
* </pre>
1010
*
1111
* @author Craig Manley
12-
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
12+
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
1313
* @license http://www.opensource.org/licenses/mit-license.php Licensed under MIT
14-
* @version $Id: Spec.php,v 1.6 2018/03/12 23:21:41 cmanley Exp $
14+
* @version $Id: Spec.php,v 1.7 2018/05/26 22:51:21 cmanley Exp $
1515
* @package Validate
1616
*/
1717
namespace Validate;
@@ -93,7 +93,7 @@ class Spec {
9393
*
9494
* The following options are supported:
9595
* <pre>
96-
* allow_empty : boolean, allow empty strings to be validated and pass 'optional' check.
96+
* allow_empty : boolean, allow empty strings to be validated and pass 'optional' check.
9797
* before : Callback that takes a reference to the value as argument so that it can mutate it before validation. It may trigger validation failure by returning boolean false.
9898
* after : Callback that takes a reference to the value as argument so that it can mutate it after validation. It may trigger validation failure by returning boolean false.
9999
* default : Any non-null value (even closures!); null arguments to validate() are replaced with this (or it's result in if it's a closure)
@@ -107,7 +107,7 @@ class Spec {
107107
*
108108
* @param array $args associative array of options
109109
*/
110-
public function __construct(array $args = null) {
110+
public function __construct(array $args = null) {
111111
if ($args) {
112112
$unknown_args = array();
113113
foreach ($args as $key => $value) {

src/Specs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @author Craig Manley
1111
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
1212
* @license http://www.opensource.org/licenses/mit-license.php Licensed under MIT
13-
* @version $Id: Specs.php,v 1.2 2018/05/26 22:32:33 cmanley Exp $
13+
* @version $Id: Specs.php,v 1.3 2018/05/26 22:51:21 cmanley Exp $
1414
* @package cmanley
1515
*/
1616
namespace Validate;

src/Validation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* </pre>
99
*
1010
* @author Craig Manley
11-
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
11+
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
1212
* @license http://www.opensource.org/licenses/mit-license.php Licensed under MIT
13-
* @version $Id: Validation.php,v 1.1 2016/06/13 20:04:09 cmanley Exp $
13+
* @version $Id: Validation.php,v 1.2 2018/05/26 22:51:21 cmanley Exp $
1414
* @package Validate
1515
*/
1616
namespace Validate;

src/Validator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @author Craig Manley
1212
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
1313
* @license http://www.opensource.org/licenses/mit-license.php Licensed under MIT
14-
* @version $Id: Validator.php,v 1.2 2018/05/26 22:32:33 cmanley Exp $
14+
* @version $Id: Validator.php,v 1.3 2018/05/26 22:51:21 cmanley Exp $
1515
* @package Validate
1616
*/
1717
namespace Validate;

src/exceptions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
* Contains the ValidationException based classes.
44
*
55
* @author Craig Manley
6-
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
6+
* @copyright Copyright © 2016, Craig Manley (www.craigmanley.com)
77
* @license http://www.opensource.org/licenses/mit-license.php Licensed under MIT
8-
* @version $Id: exceptions.php,v 1.4 2018/02/02 16:22:52 cmanley Exp $
8+
* @version $Id: exceptions.php,v 1.5 2018/05/26 22:51:21 cmanley Exp $
99
* @package Validate
1010
*/
1111
namespace Validate;

0 commit comments

Comments
 (0)