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 (#100)
by Axel
05:00
created
system/Classes/Daemon/Server.php 2 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,6 @@  discard block
 block discarded – undo
59 59
 
60 60
     /**
61 61
      * @param Container $container
62
-     * @param int $serverCycleTimeout
63
-     * @param int $port
64 62
      */
65 63
     public function __construct(Container $container)
66 64
     {
@@ -121,6 +119,9 @@  discard block
 block discarded – undo
121 119
         }
122 120
     }
123 121
 	
122
+	/**
123
+	 * @param resource $input
124
+	 */
124 125
 	protected function treatHttpInput($input)
125 126
 	{
126 127
 		$client = $request = $response = null;
Please login to merge, or discard this patch.
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -6,17 +6,12 @@
 block discarded – undo
6 6
 use Asylamba\Classes\Library\Http\RequestFactory;
7 7
 use Asylamba\Classes\Library\Http\ResponseFactory;
8 8
 use Asylamba\Classes\Daemon\ClientManager;
9
-
10 9
 use Asylamba\Classes\Scheduler\RealTimeActionScheduler;
11 10
 use Asylamba\Classes\Scheduler\CyclicActionScheduler;
12
-
13 11
 use Asylamba\Classes\Event\ExceptionEvent;
14 12
 use Asylamba\Classes\Event\ErrorEvent;
15
-
16 13
 use Asylamba\Classes\DependencyInjection\Container;
17
-
18 14
 use Asylamba\Classes\Exception\ErrorException;
19
-
20 15
 use Asylamba\Classes\Process\ProcessManager;
21 16
 use Asylamba\Classes\Task\TaskManager;
22 17
 
Please login to merge, or discard this patch.
system/Classes/Daemon/WorkerServer.php 2 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,6 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param Container $container
39
-     * @param int $serverCycleTimeout
40
-     * @param int $port
41 39
      */
42 40
     public function __construct(Container $container)
43 41
     {
@@ -114,6 +112,9 @@  discard block
 block discarded – undo
114 112
 		}
115 113
 	}
116 114
 	
115
+	/**
116
+	 * @param false|string $name
117
+	 */
117 118
 	protected function treatProcessInput($name)
118 119
 	{
119 120
 		//$process = $this->processManager->getByName($name);
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Asylamba\Classes\Event\ProcessExceptionEvent;
6 6
 use Asylamba\Classes\Event\ProcessErrorEvent;
7
-
8 7
 use Asylamba\Classes\DependencyInjection\Container;
9
-
10 8
 use Asylamba\Classes\Process\ProcessManager;
11 9
 use Asylamba\Classes\Process\ProcessGateway;
12 10
 use Asylamba\Classes\Task\TaskManager;
Please login to merge, or discard this patch.
system/Classes/DependencyInjection/Container.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     /**
63 63
      * @param string $key
64 64
      * @param object $service
65
-     * @return \Asylamba\Classes\Worker\Container
65
+     * @return Container
66 66
      */
67 67
     public function set($key, $service)
68 68
     {
Please login to merge, or discard this patch.
system/Classes/Library/Format.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
 		}
27 27
 	}
28 28
 
29
+	/**
30
+	 * @param integer $nbr
31
+	 */
29 32
 	public static function ordinalNumber($nbr) {
30 33
 		switch ($nbr) {
31 34
 			case 1:
@@ -107,6 +110,9 @@  discard block
 block discarded – undo
107 110
 		}
108 111
 	}
109 112
 
113
+	/**
114
+	 * @param string $action
115
+	 */
110 116
 	public static function actionBuilder($action, $token, $params = array(), $hasRoot = TRUE) {
111 117
 		$url = '';
112 118
 		if ($hasRoot) {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Asylamba\Classes\Library;
4 4
 
5
-use Asylamba\Classes\Worker\CTR;
6
-
7 5
 class Format {
8 6
 
9 7
 	/*
Please login to merge, or discard this patch.
system/Classes/Library/Http/RequestFactory.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,6 @@
 block discarded – undo
120 120
     
121 121
     /**
122 122
      * @param Request $request
123
-     * @param string $row
124 123
      */
125 124
     protected function parseBody(Request $request)
126 125
     {
Please login to merge, or discard this patch.
system/Classes/Library/Http/ResponseFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Asylamba\Classes\Library\Http;
4 4
 
5 5
 use Asylamba\Classes\Templating\Renderer;
6
-
7 6
 use Asylamba\Classes\Daemon\Client;
8 7
 
9 8
 class ResponseFactory
Please login to merge, or discard this patch.
system/Classes/Library/Session/Session.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      * @param string $system
55 55
      * @param string $img
56 56
      * @param string $type
57
-     * @return boolean
57
+     * @return false|null
58 58
      */
59 59
     public function addBase($key, $id, $name, $sector, $system, $img, $type) {
60 60
         if ($this->exist('playerBase')) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Asylamba\Classes\Library\Utils;
6 6
 use Asylamba\Classes\Library\Flashbag;
7
-
8 7
 use Asylamba\Classes\Container\ArrayList;
9 8
 use Asylamba\Classes\Container\StackList;
10 9
 use Asylamba\Classes\Container\EventList;
Please login to merge, or discard this patch.
system/Classes/Library/Utils.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
 		}
54 54
 	}
55 55
 
56
+	/**
57
+	 * @param string $date1
58
+	 */
56 59
 	public static function intervalDates($date1, $date2, $precision = 'h') {
57 60
 		# give each full hours between two dates
58 61
 		$dates = [];
@@ -130,6 +133,9 @@  discard block
 block discarded – undo
130 133
 		return date('Y-m-d H:i:s', $timestamp);
131 134
 	}
132 135
 
136
+	/**
137
+	 * @param integer $nbr
138
+	 */
133 139
 	public static function generateString($nbr) {
134 140
 		$password = '';
135 141
 		for ($i = 0; $i < $nbr; $i++) {
Please login to merge, or discard this patch.
system/Classes/Process/Process.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     }
71 71
     
72 72
     /**
73
-     * @return integer
73
+     * @return \DateTime
74 74
      */
75 75
     public function getStartTime()
76 76
     {
Please login to merge, or discard this patch.