Completed
Push — master ( 853a48...d40614 )
by Timothée
12s
created
src/RestApiContext.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,8 +101,8 @@
 block discarded – undo
101 101
      */
102 102
     public function iSetBasicAuthenticationWithAnd($username, $password)
103 103
     {
104
-        $authorization = base64_encode($username . ':' . $password);
105
-        $this->restApiBrowser->setRequestHeader('Authorization', 'Basic ' . $authorization);
104
+        $authorization = base64_encode($username.':'.$password);
105
+        $this->restApiBrowser->setRequestHeader('Authorization', 'Basic '.$authorization);
106 106
     }
107 107
 
108 108
     /**
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Behat\Behat\Context\Context;
7 7
 use Behat\Behat\Context\SnippetAcceptingContext;
8 8
 use Behat\Gherkin\Node\PyStringNode;
9
-use Behat\Gherkin\Node\TableNode;
10 9
 use Psr\Http\Message\RequestInterface;
11 10
 use Psr\Http\Message\ResponseInterface;
12 11
 use Rezzza\RestApiBehatExtension\Rest\RestApiBrowser;
Please login to merge, or discard this patch.
src/Extension.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
     {
17 17
         $container->setParameter('rezzza.json_api.rest.base_url', $config['rest']['base_url']);
18 18
         $container->setParameter('rezzza.json_api.rest.adaptor_name', $config['rest']['adaptor_name']);
19
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/Resources'));
19
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/Resources'));
20 20
         $loader->load('services.xml');
21 21
 
22 22
         if (true === $config['rest']['store_response']) {
Please login to merge, or discard this patch.
src/Json/JsonContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@
 block discarded – undo
201 201
             ));
202 202
         }
203 203
 
204
-        $filename = $this->jsonSchemaBaseUrl . '/' . $filename;
204
+        $filename = $this->jsonSchemaBaseUrl.'/'.$filename;
205 205
 
206 206
         if (false === is_file($filename)) {
207 207
             throw new \RuntimeException(sprintf(
Please login to merge, or discard this patch.
src/Json/JsonSchema.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@
 block discarded – undo
22 22
     public function validate(Json $json, Validator $validator)
23 23
     {
24 24
         $refResolver = new RefResolver(new UriRetriever, new UriResolver);
25
-        $schema = $refResolver->resolve('file://' . realpath($this->filename));
25
+        $schema = $refResolver->resolve('file://'.realpath($this->filename));
26 26
 
27 27
         $validator->check($json->getRawContent(), $schema);
28 28
 
29 29
         if (!$validator->isValid()) {
30
-            $msg = "JSON does not validate. Violations:" . PHP_EOL;
30
+            $msg = "JSON does not validate. Violations:".PHP_EOL;
31 31
             foreach ($validator->getErrors() as $error) {
32
-                $msg .= sprintf("  - [%s] %s" . PHP_EOL, $error['property'], $error['message']);
32
+                $msg .= sprintf("  - [%s] %s".PHP_EOL, $error['property'], $error['message']);
33 33
             }
34 34
             throw new \Exception($msg);
35 35
         }
Please login to merge, or discard this patch.
www/index.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 use Symfony\Component\HttpFoundation\JsonResponse;
9 9
 use Symfony\Component\HttpFoundation\Request;
10 10
 
11
-require_once __DIR__ . '/../vendor/autoload.php';
11
+require_once __DIR__.'/../vendor/autoload.php';
12 12
 
13 13
 $app = new Silex\Application();
14 14
 
@@ -56,15 +56,15 @@  discard block
 block discarded – undo
56 56
 );
57 57
 $app->match(
58 58
     'error_random',
59
-    function (Request $request) {
60
-        $statusCode = time() % 3 <= 0 ? 200 : 502 ;
59
+    function(Request $request) {
60
+        $statusCode = time() % 3 <= 0 ? 200 : 502;
61 61
 
62 62
         return new JsonResponse([], $statusCode);
63 63
     }
64 64
 );
65 65
 $app->match(
66 66
     'always_error',
67
-    function (Request $request) {
67
+    function(Request $request) {
68 68
         return new JsonResponse([], 502);
69 69
     }
70 70
 );
Please login to merge, or discard this patch.
src/Rest/RestApiBrowser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
             new ExecutionTimeLimited(new SleepWaiter(), $maxExecutionTime)
115 115
         );
116 116
         $restApiBrowser = $this;
117
-        $runner->run(new Callback(function () use ($restApiBrowser, $method, $uri, $body, $assertion) {
117
+        $runner->run(new Callback(function() use ($restApiBrowser, $method, $uri, $body, $assertion) {
118 118
             $restApiBrowser->sendRequest($method, $uri, $body);
119 119
 
120 120
             return $assertion();
Please login to merge, or discard this patch.