Completed
Branch master (3d25b6)
by De Cramer
02:34
created
src/eXpansion/Framework/Core/Model/Gui/Window.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -245,7 +245,7 @@
 block discarded – undo
245 245
      *
246 246
      * @param Format $format New Format
247 247
      *
248
-     * @return static
248
+     * @return Frame
249 249
      * @deprecated Use Style
250 250
      * @see        Style
251 251
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
         // Title bar & title.
52 52
         $titleLabel = new Label();
53
-        $titleLabel->setPosition(3, -$titleHeight/3 - 1)
53
+        $titleLabel->setPosition(3, -$titleHeight / 3 - 1)
54 54
             ->setAlign(Label::LEFT, Label::CENTER2)
55 55
             ->setText($name)
56 56
             ->setTextColor('fff')
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Model/Gui/ManiaScript.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     public function getVarN($name)
52 52
     {
53
-        return "exp_" . $this->id . "_$name";
53
+        return "exp_".$this->id."_$name";
54 54
     }
55 55
 
56 56
     /**
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Model/Gui/ManiaScriptFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     {
50 50
         $className = $this->className;
51 51
 
52
-        $filePath = $this->fileLocator->locate('@' . $this->relativePath);
52
+        $filePath = $this->fileLocator->locate('@'.$this->relativePath);
53 53
 
54 54
         return new $className($filePath, $params);
55 55
     }
Please login to merge, or discard this patch.