Passed
Branch master (7ba730)
by 4kizuki
02:18
created
src/Enum.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
         self::_init( );
32 32
 
33
-        if( !self::_validate_constants( $scalar ) or !isset( self::$___constants[ static::class ][ 1 ][ $scalar ] ) )
33
+        if ( !self::_validate_constants( $scalar ) or !isset( self::$___constants[ static::class ][ 1 ][ $scalar ] ) )
34 34
             throw new InvalidInitializerException;
35 35
 
36 36
         $this->scalar = $scalar;
@@ -39,11 +39,11 @@  discard block
 block discarded – undo
39 39
 
40 40
     final public static function __callStatic( string $name, array $args ) {
41 41
 
42
-        if( !empty( $args ) ) throw new BadMethodCallException;
42
+        if ( !empty( $args ) ) throw new BadMethodCallException;
43 43
 
44 44
         self::_init( );
45 45
 
46
-        if( !isset( self::$___constants[ static::class ][ 0 ][ $name ] ) )
46
+        if ( !isset( self::$___constants[ static::class ][ 0 ][ $name ] ) )
47 47
             throw new InvalidInitializerException;
48 48
 
49 49
         $class = static::class;
@@ -53,17 +53,17 @@  discard block
 block discarded – undo
53 53
 
54 54
     private static function _init( ) {
55 55
 
56
-        if( isset( self::$___constants[ static::class ] ) ) return;
56
+        if ( isset( self::$___constants[ static::class ] ) ) return;
57 57
 
58 58
         $csts = ( new ReflectionClass( static::class ) )->getConstants();
59 59
         $vals = [ ];
60 60
 
61
-        foreach( $csts as $key => $value ) {
61
+        foreach ( $csts as $key => $value ) {
62 62
 
63
-            if( !static::_validate_constants( $value ) )
63
+            if ( !static::_validate_constants( $value ) )
64 64
                 throw new EnumConstantTypeException( static::class, $key, gettype( $value ) );
65 65
 
66
-            if( isset( $vals[ $value ] ) )
66
+            if ( isset( $vals[ $value ] ) )
67 67
                 throw new DuplicatedConstantException( static::class, $key );
68 68
 
69 69
             $vals[ $value ] = true;
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
 
78 78
     protected static function _validate_constants( $value ) : bool {
79 79
 
80
-        if( is_int( $value ) ) return true;
81
-        if( is_string( $value ) && $value !== '' ) return true;
80
+        if ( is_int( $value ) ) return true;
81
+        if ( is_string( $value ) && $value !== '' ) return true;
82 82
         return false;
83 83
 
84 84
     }
Please login to merge, or discard this patch.