Passed
Push — develop ( dd1d01...9e310a )
by nguereza
10:33
created
src/RuleInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,7 @@
 block discarded – undo
50 50
  * A generic Rule that asserts whether the given validation
51 51
  * data is valid or not.
52 52
  */
53
-interface RuleInterface
54
-{
53
+interface RuleInterface {
55 54
     /**
56 55
      * Method to validate this Rule
57 56
      *
Please login to merge, or discard this patch.
src/Exception/ValidatorException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,6 +38,5 @@
 block discarded – undo
38 38
  * @class ValidatorException
39 39
  * @package Platine\Validator\Exception
40 40
  */
41
-class ValidatorException extends Exception
42
-{
41
+class ValidatorException extends Exception {
43 42
 }
Please login to merge, or discard this patch.
src/Rule/AlphaNumericDash.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class AlphaNumericDash
54 54
  * @package Platine\Validator\Rule
55 55
  */
56
-class AlphaNumericDash implements RuleInterface
57
-{
56
+class AlphaNumericDash implements RuleInterface {
58 57
     /**
59 58
      * String pattern to allow
60 59
      * @var string
Please login to merge, or discard this patch.
src/Rule/Natural.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class Natural
54 54
  * @package Platine\Validator\Rule
55 55
  */
56
-class Natural implements RuleInterface
57
-{
56
+class Natural implements RuleInterface {
58 57
     /**
59 58
      * {@inheritdoc}
60 59
      * @see RuleInterface
Please login to merge, or discard this patch.
src/Rule/IP.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class IP
54 54
  * @package Platine\Validator\Rule
55 55
  */
56
-class IP implements RuleInterface
57
-{
56
+class IP implements RuleInterface {
58 57
     /**
59 58
      * {@inheritdoc}
60 59
      * @see RuleInterface
Please login to merge, or discard this patch.
src/Rule/URL.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class URL
54 54
  * @package Platine\Validator\Rule
55 55
  */
56
-class URL implements RuleInterface
57
-{
56
+class URL implements RuleInterface {
58 57
     /**
59 58
      * {@inheritdoc}
60 59
      * @see RuleInterface
Please login to merge, or discard this patch.
src/Rule/Alpha.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class Alpha
54 54
  * @package Platine\Validator\Rule
55 55
  */
56
-class Alpha implements RuleInterface
57
-{
56
+class Alpha implements RuleInterface {
58 57
     /**
59 58
      * String pattern to allow
60 59
      * @var string
Please login to merge, or discard this patch.
src/Rule/IPv4.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class IPv4
54 54
  * @package Platine\Validator\Rule
55 55
  */
56
-class IPv4 implements RuleInterface
57
-{
56
+class IPv4 implements RuleInterface {
58 57
     /**
59 58
      * {@inheritdoc}
60 59
      * @see RuleInterface
Please login to merge, or discard this patch.
src/Rule/IPv6.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class IPv6
54 54
  * @package Platine\Validator\Rule
55 55
  */
56
-class IPv6 implements RuleInterface
57
-{
56
+class IPv6 implements RuleInterface {
58 57
     /**
59 58
      * {@inheritdoc}
60 59
      * @see RuleInterface
Please login to merge, or discard this patch.