GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#65)
by halfpastfour
02:21
created
src/Chart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
      */
229 229
     public function createDataSet()
230 230
     {
231
-        $datasetClass = static::MODEL['dataset'];
231
+        $datasetClass = static::MODEL[ 'dataset' ];
232 232
         /** @var \Halfpastfour\PHPChartJS\DataSet $dataSet */
233 233
         $dataSet = new $datasetClass();
234 234
         $dataSet->setOwner($this);
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
     public function options()
243 243
     {
244 244
         if (is_null($this->options)) {
245
-            $optionsClass  = static::MODEL['options'];
245
+            $optionsClass  = static::MODEL[ 'options' ];
246 246
             $this->options = new $optionsClass($this);
247 247
             $this->options->setOwner($this);
248 248
         }
Please login to merge, or discard this patch.