Completed
Push — master ( 799d43...5b1359 )
by Clinton
02:33
created
src/classes/MongoCollection.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
     private $collection = null;
10 10
     private $mongo = null;
11 11
 
12
+    /**
13
+     * @param Mongo $mongo
14
+     */
12 15
     public function __construct($collection, $mongo = null)
13 16
     {
14 17
         $this->collection = $collection;
Please login to merge, or discard this patch.
src/config.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@
 block discarded – undo
9 9
 $config = Config::getInstance();
10 10
 
11 11
 $config->setAll([
12
-	'debug' => true,
13
-	'siteName' => 'Project Base',
12
+    'debug' => true,
13
+    'siteName' => 'Project Base',
14 14
 
15
-	// Project settings
16
-	'projectDir' => $projectDir
15
+    // Project settings
16
+    'projectDir' => $projectDir
17 17
 ]);
18 18
 
19 19
 if (file_exists($projectDir . '/config.json'))
Please login to merge, or discard this patch.
src/classes/Job.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,9 @@  discard block
 block discarded – undo
18 18
             $job = $queueJobs->pop();
19 19
 
20 20
             $pid = ($job === null) ? 0 : pcntl_fork();
21
-            if ($job !== null && $pid === 0) return self::runJob($job);
21
+            if ($job !== null && $pid === 0) {
22
+                return self::runJob($job);
23
+            }
22 24
             $children[$pid] = true;
23 25
             self::checkChildren($maxChildren, $children);
24 26
         }
@@ -50,7 +52,9 @@  discard block
 block discarded – undo
50 52
 
51 53
     public static function addJobs()
52 54
     {   
53
-        if (Redis::canRun(__CLASS__) === false) return;
55
+        if (Redis::canRun(__CLASS__) === false) {
56
+            return;
57
+        }
54 58
 
55 59
         $jobs = Config::getInstance()->get("cronjobs", []);
56 60
         foreach ($jobs as $className) {
@@ -62,7 +66,9 @@  discard block
 block discarded – undo
62 66
     {
63 67
         $class = new $className();
64 68
 
65
-        if (!($class instanceof CronJob)) throw new IllegalException("$className is not an instanceof \\cvweiss\projectbase\\CronJob");
69
+        if (!($class instanceof CronJob)) {
70
+            throw new IllegalException("$className is not an instanceof \\cvweiss\projectbase\\CronJob");
71
+        }
66 72
 
67 73
         $cron = \Cron\CronExpression::factory($class->getCron());
68 74
         if ($cron->isDue() && get_class($class) != basename(__CLASS__)) {
Please login to merge, or discard this patch.
src/classes/Mongo.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,12 @@
 block discarded – undo
59 59
     public function find(string $collection, array $query = [], array $sort = null, int $limit = 0):array
60 60
     {
61 61
         $options = [];
62
-        if ($sort != null) $options['sort'] = $sort;
63
-        if ($limit != 0) $options['limit'] = $limit;
62
+        if ($sort != null) {
63
+            $options['sort'] = $sort;
64
+        }
65
+        if ($limit != 0) {
66
+            $options['limit'] = $limit;
67
+        }
64 68
 
65 69
         $query = new \MongoDB\Driver\Query($query, $options);
66 70
         $cursor = $this->manager->executeQuery($this->database . ".$collection", $query);
Please login to merge, or discard this patch.
src/classes/Tools.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,6 +47,6 @@
 block discarded – undo
47 47
 
48 48
     public static function output($text)
49 49
     {
50
-        echo date('Y-m-d H:i:s')." > $text\n";
50
+        echo date('Y-m-d H:i:s') . " > $text\n";
51 51
     }
52 52
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,9 @@
 block discarded – undo
14 14
         $lastRun = microtime();
15 15
 
16 16
         while (microtime() < $doneAt && $childrenCount < $maxChildren) {
17
-            if (pcntl_fork()) return true;
17
+            if (pcntl_fork()) {
18
+                return true;
19
+            }
18 20
             $sleep = floor(($lastRun + $usleep) - microtime());
19 21
             usleep($sleep);
20 22
             $childrenCount++;
Please login to merge, or discard this patch.
src/classes/MongoDoc.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,9 @@
 block discarded – undo
77 77
     protected function update(BulkWrite $bulk = null):bool
78 78
     {   
79 79
         // If we have nothing to update then move along
80
-        if (sizeof($this->updates) == 0) return true;
80
+        if (sizeof($this->updates) == 0) {
81
+            return true;
82
+        }
81 83
 
82 84
         $commit = $bulk === null;
83 85
         $bulk = $this->getBulkWriter($bulk);
Please login to merge, or discard this patch.
src/classes/Setup.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,12 +11,16 @@
 block discarded – undo
11 11
         $projectDir = basename($vendorDir) == 'vendor' ? dirname($vendorDir) : dirname(dirname(__DIR__));
12 12
 
13 13
         $dirs = ['/view/', '/cache/', '/cache/jade'];
14
-        foreach ($dirs as $dir) self::makeDir($projectDir . $dir);
14
+        foreach ($dirs as $dir) {
15
+            self::makeDir($projectDir . $dir);
16
+        }
15 17
     }
16 18
 
17 19
     private static function makeDir($dir)
18 20
     {
19
-        if (is_dir($dir)) return;
21
+        if (is_dir($dir)) {
22
+            return;
23
+        }
20 24
         echo "Creating directory: $dir\n";
21 25
         mkdir($dir);
22 26
     }
Please login to merge, or discard this patch.
src/twig.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 $loader = new \Twig_Loader_Filesystem($path);
14 14
 
15 15
 $twig = new \Twig_Environment($loader, [
16
-		'cache' => $config->get('cachePath', $config->get('projectDir') . '/cache/twig'),
17
-		'debug' => $config->get('debug', false),
16
+        'cache' => $config->get('cachePath', $config->get('projectDir') . '/cache/twig'),
17
+        'debug' => $config->get('debug', false),
18 18
 ]);
19 19
 
20 20
 $view = new Render($twig);
Please login to merge, or discard this patch.
src/controller/auth/eve/callback.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 
19 19
         $url = 'https://login.eveonline.com/oauth/token';
20 20
         $verify_url = 'https://login.eveonline.com/oauth/verify';
21
-        $header = 'Authorization: Basic '.base64_encode($clientID . ':' . $clientSecret);
21
+        $header = 'Authorization: Basic ' . base64_encode($clientID . ':' . $clientSecret);
22 22
         $fields_string = '';
23 23
         $fields = array(
24 24
                 'grant_type' => 'authorization_code',
25 25
                 'code' => filter_input(INPUT_GET, 'code'),
26 26
                 );
27 27
         foreach ($fields as $key => $value) {
28
-            $fields_string .= $key.'='.$value.'&';
28
+            $fields_string .= $key . '=' . $value . '&';
29 29
         }
30 30
         rtrim($fields_string, '&');
31 31
         $ch = curl_init();
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $refresh_token = $json['refresh_token'];
50 50
         $ch = curl_init();
51 51
         // Get the Character details from SSO
52
-        $header = 'Authorization: Bearer '.$access_token;
52
+        $header = 'Authorization: Bearer ' . $access_token;
53 53
         curl_setopt($ch, CURLOPT_URL, $verify_url);
54 54
         curl_setopt($ch, CURLOPT_USERAGENT, Config::getInstance()->get("siteName"));
55 55
         curl_setopt($ch, CURLOPT_HTTPHEADER, array($header));
Please login to merge, or discard this patch.