Passed
Push — feature/updates-nov25 ( 25d33b...e99728 )
by Johan
05:23
created
src/Surfnet/StepupMiddleware/ApiBundle/Doctrine/Type/SsoOn2faOptionType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
                     "Encountered illegal sso on 2fo vet option %s '%s', expected a 
50 50
                     SsoOn2faOption instance",
51 51
                     get_debug_type($value),
52
-                    is_scalar($value) ? (string)$value : '',
52
+                    is_scalar($value) ? (string) $value : '',
53 53
                 ),
54 54
             );
55 55
         }
56 56
 
57
-        return (int)$value->isEnabled();
57
+        return (int) $value->isEnabled();
58 58
     }
59 59
 
60 60
     public function convertToPHPValue($value, AbstractPlatform $platform): ?SsoOn2faOption
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         }
65 65
 
66 66
         try {
67
-            $ssoOn2faOption = new SsoOn2faOption((bool)$value);
67
+            $ssoOn2faOption = new SsoOn2faOption((bool) $value);
68 68
         } catch (TypeError $e) {
69 69
             // get nice standard message, so we can throw it keeping the exception chain
70 70
             $doctrineExceptionMessage = ConversionException::conversionFailed(
Please login to merge, or discard this patch.
StepupMiddleware/ApiBundle/Doctrine/Type/ConfigurationInstitutionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
                 sprintf(
48 48
                     "Encountered illegal institution of type %s '%s', expected an Institution instance",
49 49
                     get_debug_type($value),
50
-                    is_scalar($value) ? (string)$value : '',
50
+                    is_scalar($value) ? (string) $value : '',
51 51
                 ),
52 52
             );
53 53
         }
Please login to merge, or discard this patch.
Surfnet/StepupMiddleware/ApiBundle/Doctrine/Type/ContactInformationType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             return null;
46 46
         }
47 47
 
48
-        return (string)$value;
48
+        return (string) $value;
49 49
     }
50 50
 
51 51
     public function convertToPHPValue($value, AbstractPlatform $platform): ?ContactInformation
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
         try {
58 58
             $contactInformation = new ContactInformation($value);
59
-        } catch (InvalidArgumentException|TypeError $e) {
59
+        } catch (InvalidArgumentException | TypeError $e) {
60 60
             // get nice standard message, so we can throw it keeping the exception chain
61 61
             $doctrineExceptionMessage = ConversionException::conversionFailed(
62 62
                 $value,
Please login to merge, or discard this patch.
StepupMiddleware/ApiBundle/Doctrine/Type/NumberOfTokensPerIdentityType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                     "Encountered illegal number of tokens per identity %s '%s', expected a 
50 50
                     NumberOfTokensPerIdentityOption instance",
51 51
                     get_debug_type($value),
52
-                    is_scalar($value) ? (string)$value : '',
52
+                    is_scalar($value) ? (string) $value : '',
53 53
                 ),
54 54
             );
55 55
         }
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         }
65 65
 
66 66
         try {
67
-            $numberOfTokensPerIdentityOption = new NumberOfTokensPerIdentityOption((int)$value);
67
+            $numberOfTokensPerIdentityOption = new NumberOfTokensPerIdentityOption((int) $value);
68 68
         } catch (InvalidArgumentException $e) {
69 69
             // get nice standard message, so we can throw it keeping the exception chain
70 70
             $doctrineExceptionMessage = ConversionException::conversionFailed(
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddleware/ApiBundle/Doctrine/Type/LocationType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             return null;
46 46
         }
47 47
 
48
-        return (string)$value;
48
+        return (string) $value;
49 49
     }
50 50
 
51 51
     public function convertToPHPValue($value, AbstractPlatform $platform): ?Location
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
         try {
58 58
             $location = new Location($value);
59
-        } catch (InvalidArgumentException|TypeError $e) {
59
+        } catch (InvalidArgumentException | TypeError $e) {
60 60
             // get nice standard message, so we can throw it keeping the exception chain
61 61
             $doctrineExceptionMessage = ConversionException::conversionFailed(
62 62
                 $value,
Please login to merge, or discard this patch.
ApiBundle/Doctrine/Type/ConfigurationContactInformationType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                 sprintf(
51 51
                     "Encountered illegal contact information of type %s '%s', expected a ContactInformation instance",
52 52
                     get_debug_type($value),
53
-                    is_scalar($value) ? (string)$value : '',
53
+                    is_scalar($value) ? (string) $value : '',
54 54
                 ),
55 55
             );
56 56
         }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
         try {
68 68
             $contactInformation = new ContactInformation($value);
69
-        } catch (InvalidArgumentException|TypeError $e) {
69
+        } catch (InvalidArgumentException | TypeError $e) {
70 70
             // get nice standard message, so we can throw it keeping the exception chain
71 71
             $doctrineExceptionMessage = ConversionException::conversionFailed(
72 72
                 $value,
Please login to merge, or discard this patch.
ApiBundle/Doctrine/Type/ShowRaaContactInformationOptionType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,12 +47,12 @@
 block discarded – undo
47 47
                 sprintf(
48 48
                     "Encountered illegal location of type %s '%s', expected a ShowRaaContactInformationOption instance",
49 49
                     get_debug_type($value),
50
-                    is_scalar($value) ? (string)$value : '',
50
+                    is_scalar($value) ? (string) $value : '',
51 51
                 ),
52 52
             );
53 53
         }
54 54
 
55
-        return (int)$value->isEnabled();
55
+        return (int) $value->isEnabled();
56 56
     }
57 57
 
58 58
     public function convertToPHPValue($value, AbstractPlatform $platform): ?ShowRaaContactInformationOption
Please login to merge, or discard this patch.
Surfnet/StepupMiddleware/ApiBundle/Doctrine/Type/SecondFactorTypeType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
             return null;
43 43
         }
44 44
 
45
-        return (string)$value;
45
+        return (string) $value;
46 46
     }
47 47
 
48 48
     public function convertToPHPValue($value, AbstractPlatform $platform): ?SecondFactorType
Please login to merge, or discard this patch.
Surfnet/StepupMiddleware/ApiBundle/Doctrine/Type/SecondFactorStatusType.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                 sprintf(
52 52
                     "Encountered illegal second factor status of type %s '%s', expected a SecondFactorStatus instance",
53 53
                     get_debug_type($value),
54
-                    is_scalar($value) ? (string)$value : '',
54
+                    is_scalar($value) ? (string) $value : '',
55 55
                 ),
56 56
             );
57 57
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             return 40;
69 69
         }
70 70
 
71
-        throw new ConversionException(sprintf("Encountered inconvertible second factor status '%s'", (string)$value));
71
+        throw new ConversionException(sprintf("Encountered inconvertible second factor status '%s'", (string) $value));
72 72
     }
73 73
 
74 74
     /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     public function convertToPHPValue(mixed $value, AbstractPlatform $platform): SecondFactorStatus
78 78
     {
79 79
         if (is_scalar($value)) {
80
-            $value = (string)$value;
80
+            $value = (string) $value;
81 81
         }
82 82
         if ($value === '0') {
83 83
             return SecondFactorStatus::unverified();
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             sprintf(
96 96
                 "Encountered illegal second factor status of type %s '%s', expected it to be one of [0,10,20,30,40]",
97 97
                 get_debug_type($value),
98
-                is_scalar($value) ? (string)$value : '',
98
+                is_scalar($value) ? (string) $value : '',
99 99
             ),
100 100
         );
101 101
     }
Please login to merge, or discard this patch.