Completed
Push — master ( 5f50d9...cf27fb )
by Vladimir
02:07
created
src/Objects/ApiObject.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
 
125 125
         if ($this->arrayConstructionOnly && !is_array($idOrArray))
126 126
         {
127
-            throw new \InvalidArgumentException("A $staticClass cannot be fetched from an ID.");
127
+            throw new \InvalidArgumentException("a $staticClass cannot be fetched from an ID.");
128 128
         }
129 129
 
130 130
         $this->initializeValues();
Please login to merge, or discard this patch.
tests/PulseNoteTestCase.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         $this->setExpectedException(\InvalidArgumentException::class);
29 29
 
30
-        $this->pulse->addNote(self::$title, self::$content, true, NULL, true);
30
+        $this->pulse->addNote(self::$title, self::$content, true, null, true);
31 31
     }
32 32
 
33 33
     public function testCreateNote ()
Please login to merge, or discard this patch.