Completed
Push — master ( 9da347...3d60d5 )
by Alain
28s queued 13s
created
library/Requests/Utility/FilteredIterator.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,16 +46,16 @@
 block discarded – undo
46 46
 	/**
47 47
 	 * @inheritdoc
48 48
 	 */
49
-	public function unserialize( $serialized ) {
49
+	public function unserialize($serialized) {
50 50
 	}
51 51
 
52 52
 	/**
53 53
 	 * @inheritdoc
54 54
 	 */
55
-	public function __unserialize( $serialized ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__unserializeFound
55
+	public function __unserialize($serialized) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__unserializeFound
56 56
 	}
57 57
 
58 58
 	public function __wakeup() { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__wakeupFound
59
-		unset( $this->callback );
59
+		unset($this->callback);
60 60
 	}
61 61
 }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,10 +52,12 @@
 block discarded – undo
52 52
 	/**
53 53
 	 * @inheritdoc
54 54
 	 */
55
-	public function __unserialize( $serialized ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__unserializeFound
55
+	public function __unserialize( $serialized ) {
56
+// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__unserializeFound
56 57
 	}
57 58
 
58
-	public function __wakeup() { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__wakeupFound
59
+	public function __wakeup() {
60
+// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__wakeupFound
59 61
 		unset( $this->callback );
60 62
 	}
61 63
 }
Please login to merge, or discard this patch.