Completed
Push — master ( e15cd8...6a18e3 )
by Sam
03:48
created
src/Xtools/Project.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Xtools;
4 4
 
5 5
 use Mediawiki\Api\MediawikiApi;
6
-use Symfony\Component\VarDumper\VarDumper;
7 6
 
8 7
 /**
9 8
  * A Project is a single wiki that Xtools is querying.
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function getUrl($withTrailingSlash = true)
81 81
     {
82
-        return rtrim($this->getMetadata()['url'], '/') . ($withTrailingSlash ? '/' : '');
82
+        return rtrim($this->getMetadata()['url'], '/').($withTrailingSlash ? '/' : '');
83 83
     }
84 84
 
85 85
     /**
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function userOptInPage(User $user)
154 154
     {
155
-        $localPageName = 'User:' . $user->getUsername() . '/EditCounterOptIn.js';
155
+        $localPageName = 'User:'.$user->getUsername().'/EditCounterOptIn.js';
156 156
         return $localPageName;
157 157
     }
158 158
 
Please login to merge, or discard this patch.