Completed
Push — master ( 1e061c...bc1ecf )
by Vladimir
05:31
created
tests/sanitize-fixtures.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-$auth = json_decode(file_get_contents(__DIR__ . '/../phpunit-auth.json'), true);
4
-$findAndReplace = json_decode(file_get_contents(__DIR__ . '/sanitize-values.json'), true);
5
-$fixtures = file_get_contents(__DIR__ . '/fixtures/PhpPulseVCR');
3
+$auth = json_decode(file_get_contents(__DIR__.'/../phpunit-auth.json'), true);
4
+$findAndReplace = json_decode(file_get_contents(__DIR__.'/sanitize-values.json'), true);
5
+$fixtures = file_get_contents(__DIR__.'/fixtures/PhpPulseVCR');
6 6
 
7 7
 $sanitized = str_replace($auth['apiToken'], 'YourApiKeyHere', $fixtures);
8 8
 
@@ -11,4 +11,4 @@  discard block
 block discarded – undo
11 11
     $sanitized = str_replace($key, $value, $sanitized);
12 12
 }
13 13
 
14
-file_put_contents(__DIR__ . '/fixtures/PhpPulseVCR-sanitized', $sanitized);
15 14
\ No newline at end of file
15
+file_put_contents(__DIR__.'/fixtures/PhpPulseVCR-sanitized', $sanitized);
16 16
\ No newline at end of file
Please login to merge, or discard this patch.
src/PulseGroup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,12 +50,12 @@
 block discarded – undo
50 50
 
51 51
     public function isArchived ()
52 52
     {
53
-        return (bool)$this->archived;
53
+        return (bool) $this->archived;
54 54
     }
55 55
 
56 56
     public function isDeleted ()
57 57
     {
58
-        return (bool)$this->deleted;
58
+        return (bool) $this->deleted;
59 59
     }
60 60
 
61 61
     /**
Please login to merge, or discard this patch.
src/Objects/PulseColumnTextValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
         $url        = sprintf("%s/%d/columns/%s/text.json", self::apiEndpoint(), $this->board_id, $this->column_id);
52 52
         $postParams = [
53 53
             "pulse_id" => $this->pulse_id,
54
-            "text"     => (string)$text
54
+            "text"     => (string) $text
55 55
         ];
56 56
 
57 57
         $result = self::sendPut($url, $postParams);
Please login to merge, or discard this patch.
src/Utilities/UrlQuery.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function __construct ($url, $urlParams)
56 56
     {
57
-        $this->url  = $url . "?" . self::formatParameters($urlParams);
57
+        $this->url  = $url."?".self::formatParameters($urlParams);
58 58
         $this->cURL = curl_init();
59 59
 
60 60
         $this->configureCurl();
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
         curl_setopt_array($this->cURL, [
89 89
             CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
90
-            CURLOPT_USERPWD  => $username . ":" . $password
90
+            CURLOPT_USERPWD  => $username.":".$password
91 91
         ]);
92 92
     }
93 93
 
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
                 continue;
312 312
             }
313 313
 
314
-            $parameters[] = rawurlencode($key) . "=" . rawurlencode($value);
314
+            $parameters[] = rawurlencode($key)."=".rawurlencode($value);
315 315
         }
316 316
 
317 317
         return implode("&", $parameters);
Please login to merge, or discard this patch.
docs/sami-config.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/ApiFilter.php';
3
+require_once __DIR__.'/ApiFilter.php';
4 4
 
5 5
 use allejo\Sami\ApiFilter;
6 6
 use Sami\RemoteRepository\GitHubRemoteRepository;
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 $iterator = Finder::create()
12 12
     ->files()
13 13
     ->name('*.php')
14
-    ->in($dir = __DIR__ . '/../src')
14
+    ->in($dir = __DIR__.'/../src')
15 15
 ;
16 16
 
17 17
 // generate documentation for all 0.* branches and the master branch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
 $sami = new Sami($iterator, array(
25 25
     'versions'             => $versions,
26 26
     'title'                => 'PhpPulse API',
27
-    'build_dir'            => __DIR__ . '/api/build/PhpPulse/%version%',
28
-    'cache_dir'            => __DIR__ . '/api/cache/PhpPulse/%version%',
27
+    'build_dir'            => __DIR__.'/api/build/PhpPulse/%version%',
28
+    'cache_dir'            => __DIR__.'/api/cache/PhpPulse/%version%',
29 29
     'remote_repository'    => new GitHubRemoteRepository('allejo/PhpPulse', dirname($dir)),
30 30
     'default_opened_level' => 2,
31 31
 ));
Please login to merge, or discard this patch.
tests/Utilities/AuthenticatedClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         return (isset($this->apiToken));
26 26
     }
27 27
 
28
-    public function getApiToken()
28
+    public function getApiToken ()
29 29
     {
30 30
         return $this->apiToken;
31 31
     }
Please login to merge, or discard this patch.
tests/PulseUnitTestCase.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     const SecondUser = 361981;
12 12
     const BoardId = 3844236;
13 13
 
14
-    public function setUp()
14
+    public function setUp ()
15 15
     {
16 16
         $cassette = (getenv('TRAVIS') == 'true') ? 'PhpPulseVCR-sanitized' : 'PhpPulseVCR';
17 17
 
@@ -25,44 +25,44 @@  discard block
 block discarded – undo
25 25
         VCR::turnOff();
26 26
     }
27 27
 
28
-    protected function assertIsInt($expected, $message = "")
28
+    protected function assertIsInt ($expected, $message = "")
29 29
     {
30 30
         $this->assertTrue(is_int($expected), $message);
31 31
     }
32 32
 
33
-    protected function assertIsString($expected, $message = "")
33
+    protected function assertIsString ($expected, $message = "")
34 34
     {
35 35
         $this->assertTrue(is_string($expected), $message);
36 36
     }
37 37
 
38
-    protected function assertIsArray($expected, $message = "")
38
+    protected function assertIsArray ($expected, $message = "")
39 39
     {
40 40
         $this->assertTrue(is_array($expected), $message);
41 41
     }
42 42
 
43
-    protected function assertCountEqual($expected, $actual, $message = "")
43
+    protected function assertCountEqual ($expected, $actual, $message = "")
44 44
     {
45 45
         $this->assertEquals($expected, count($actual), $message);
46 46
     }
47 47
 
48
-    protected function assertCountLessThan($expected, $actual, $message = "")
48
+    protected function assertCountLessThan ($expected, $actual, $message = "")
49 49
     {
50 50
         $this->assertLessThan($expected, count($actual), $message);
51 51
     }
52 52
 
53
-    protected function assertCountGreaterThan($expected, $actual, $message = "")
53
+    protected function assertCountGreaterThan ($expected, $actual, $message = "")
54 54
     {
55 55
         $this->assertGreaterThan($expected, count($actual), $message);
56 56
     }
57 57
 
58
-    protected function assertPulseObjectType($instanceName, $actual, $message = "")
58
+    protected function assertPulseObjectType ($instanceName, $actual, $message = "")
59 59
     {
60
-        $instanceOf = "allejo\\DaPulse\\" . $instanceName;
60
+        $instanceOf = "allejo\\DaPulse\\".$instanceName;
61 61
 
62 62
         $this->assertInstanceOf($instanceOf, $actual, $message);
63 63
     }
64 64
 
65
-    protected function assertPulseArrayContains($needle, $haystack, $message = "")
65
+    protected function assertPulseArrayContains ($needle, $haystack, $message = "")
66 66
     {
67 67
         $resultFound = false;
68 68
 
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @license   https://github.com/allejo/PhpPulse/blob/master/LICENSE.md MIT
5 5
  */
6 6
 
7
-require __DIR__ . '/../vendor/autoload.php';
7
+require __DIR__.'/../vendor/autoload.php';
8 8
 
9 9
 use allejo\DaPulse\PulseBoard;
10 10
 use allejo\DaPulse\Tests\Utilities\AuthenticatedClient;
Please login to merge, or discard this patch.
src/Objects/ApiObject.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
     {
304 304
         if (self::lazyCastNeeded($target, $objectType))
305 305
         {
306
-            $object = ($objectType[0] == "\\") ? $objectType : self::OBJ_NAMESPACE . $objectType;
306
+            $object = ($objectType[0] == "\\") ? $objectType : self::OBJ_NAMESPACE.$objectType;
307 307
             $target = new $object($target);
308 308
         }
309 309
     }
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
      */
343 343
     final protected static function lazyCastNeeded ($target, $objectType)
344 344
     {
345
-        $objectDefinition = ($objectType[0] === "\\") ? $objectType : self::OBJ_NAMESPACE . $objectType;
345
+        $objectDefinition = ($objectType[0] === "\\") ? $objectType : self::OBJ_NAMESPACE.$objectType;
346 346
 
347 347
         return !($target instanceof $objectDefinition);
348 348
     }
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
      */
381 381
     final protected static function castArrayToObjectArray ($className, $objects, $lazyLoad = false)
382 382
     {
383
-        $class = self::OBJ_NAMESPACE . $className;
383
+        $class = self::OBJ_NAMESPACE.$className;
384 384
         $array = [];
385 385
 
386 386
         foreach ($objects as $post)
Please login to merge, or discard this patch.