Passed
Pull Request — master (#3)
by Timothy
06:14
created
test/unit/test/Transaction/TransactionIdentifierGeneratorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressTest\HyperledgerFabricClient\Transaction;
22 22
 
Please login to merge, or discard this patch.
test/unit/test/Transaction/TransactionIdentifierTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressTest\HyperledgerFabricClient\Transaction;
22 22
 
Please login to merge, or discard this patch.
test/unit/test/Peer/UnaryCallResolverTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressTest\HyperledgerFabricClient\Peer;
22 22
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $this->unaryCall->method('wait')
57 57
             ->willReturn([
58 58
                 $proposalResponse = new ProposalResponse(),
59
-                [ 'code' => 0 ]
59
+                ['code' => 0]
60 60
             ]);
61 61
 
62 62
         $response = $this->sut->resolveOne($this->unaryCall);
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $this->unaryCall->method('wait')
89 89
             ->willReturn([
90 90
                 new ProposalResponse(),
91
-                [ 'code' => 0 ]
91
+                ['code' => 0]
92 92
             ]);
93 93
 
94 94
         $responses = $this->sut->resolveMany($this->unaryCall, $this->unaryCall);
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             ->willReturnOnConsecutiveCalls(
128 128
                 [
129 129
                     new ProposalResponse(),
130
-                    [ 'code' => 0 ]
130
+                    ['code' => 0]
131 131
                 ],
132 132
                 [
133 133
                     null,
Please login to merge, or discard this patch.
test/unit/test/Peer/PeerOptionsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressTest\HyperledgerFabricClient\Peer;
22 22
 
Please login to merge, or discard this patch.
test/unit/test/Peer/PeerFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressTest\HyperledgerFabricClient\Peer;
22 22
 
Please login to merge, or discard this patch.
test/unit/test/Peer/PeerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressTest\HyperledgerFabricClient\Peer;
22 22
 
Please login to merge, or discard this patch.
test/unit/test/EndorserClient/EndorserClientManagerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressTest\HyperledgerFabricClient\EndorserClient;
22 22
 
Please login to merge, or discard this patch.
test/integration/test/Chaincode/ChaincodeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * permissions and limitations under the License.
17 17
  */
18 18
 
19
-declare(strict_types=1);
19
+declare(strict_types = 1);
20 20
 
21 21
 namespace AmericanExpressIntegrationTest\HyperledgerFabricClient\Chaincode;
22 22
 
Please login to merge, or discard this patch.