Passed
Pull Request — master (#198)
by Glynn
09:05
created
src/Interfaces/Registration_Middleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 	 * @param T $class
35 35
 	 * @return T
36 36
 	 */
37
-	public function process( object $class ): object; // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.classFound
37
+	public function process(object $class): object; // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.classFound
38 38
 
39 39
 	/**
40 40
 	 * Used to for any middleware setup before process is called
Please login to merge, or discard this patch.
src/Utils/Object_Helper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	 * @param string $class_instance
34 34
 	 * @return boolean
35 35
 	 */
36
-	public static function is_a( $value, string $class_instance ): bool {
37
-		return is_object( $value ) && is_a( $value, $class_instance );
36
+	public static function is_a($value, string $class_instance): bool {
37
+		return is_object($value) && is_a($value, $class_instance);
38 38
 	}
39 39
 }
Please login to merge, or discard this patch.