Completed
Push — master ( 9fe9e2...c60305 )
by Vincenzo
04:53 queued 02:24
created
api/config/modules.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -3,39 +3,39 @@
 block discarded – undo
3 3
 return [
4 4
 	'modules' => [
5 5
 		"4-4-2" => [
6
-			'roles'=>[1,1,2,1,1,2,1,0,2,0],
6
+			'roles'=>[1, 1, 2, 1, 1, 2, 1, 0, 2, 0],
7 7
             'character' => 2
8 8
 		],
9 9
 		"4-3-3" => [
10
-			'roles'=>[1,1,2,1,0,3,0,1,1,1],
10
+			'roles'=>[1, 1, 2, 1, 0, 3, 0, 1, 1, 1],
11 11
             'character' => 1
12 12
 		],
13 13
 		"4-5-1" => [
14
-			'roles'=>[1,1,2,1,1,3,1,0,1,0],
14
+			'roles'=>[1, 1, 2, 1, 1, 3, 1, 0, 1, 0],
15 15
             'character' => 4
16 16
 		],
17 17
 		"4-2-4" => [
18
-			'roles'=>[1,1,2,1,0,2,0,1,2,1],
18
+			'roles'=>[1, 1, 2, 1, 0, 2, 0, 1, 2, 1],
19 19
             'character' => 1
20 20
 		],
21 21
 		"3-5-2" => [
22
-			'roles'=>[1,0,3,0,1,3,1,0,2,0],
22
+			'roles'=>[1, 0, 3, 0, 1, 3, 1, 0, 2, 0],
23 23
             'character' => 2
24 24
 		],
25 25
 		"3-4-3" => [
26
-			'roles'=>[1,0,3,0,1,2,1,1,1,1],
26
+			'roles'=>[1, 0, 3, 0, 1, 2, 1, 1, 1, 1],
27 27
             'character' => 1
28 28
 		],
29 29
 		"3-3-4" => [
30
-			'roles'=>[1,0,3,0,0,3,0,1,2,1],
30
+			'roles'=>[1, 0, 3, 0, 0, 3, 0, 1, 2, 1],
31 31
             'character' => 1
32 32
 		],
33 33
 		"5-4-1" => [
34
-			'roles'=>[1,1,3,1,1,2,1,0,1,0],
34
+			'roles'=>[1, 1, 3, 1, 1, 2, 1, 0, 1, 0],
35 35
             'character' => 4
36 36
 		],
37 37
 		"5-3-2" => [
38
-			'roles'=>[1,1,3,1,0,3,0,0,2,0],
38
+			'roles'=>[1, 1, 3, 1, 0, 3, 0, 0, 2, 0],
39 39
             'character' => 4
40 40
 		]
41 41
 	],
Please login to merge, or discard this patch.
api/Lib/Helpers/Config.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
      */
23 23
     public static function get($key, $directory = null)
24 24
     {
25
-        $fileName = $directory . "config/";
25
+        $fileName = $directory."config/";
26 26
         $exp = explode(".", $key);
27
-        if (is_array($exp) && $exp[0] != null && $exp[1] != null && file_exists($fileName . $exp[0] . ".php")) {
28
-            $conf = include($fileName . $exp[0] . ".php");
27
+        if (is_array($exp) && $exp[0] != null && $exp[1] != null && file_exists($fileName.$exp[0].".php")) {
28
+            $conf = include($fileName.$exp[0].".php");
29 29
             $val = array_key_exists($exp[1], $conf) ? $conf[$exp[1]] : null;
30 30
             return $val;
31 31
         }
Please login to merge, or discard this patch.
api/Lib/Helpers/TextFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * @param $currencyString
15 15
      * @return float
16 16
      */
17
-    public static function currencyStringToFloat($currencyString){
17
+    public static function currencyStringToFloat($currencyString) {
18 18
 		//currency is always in this format € 550
19 19
 
20 20
 		return floatval(
Please login to merge, or discard this patch.
api/Lib/Helpers/Dom.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
      * @return string
15 15
      */
16 16
     public static function getHtml($node) {
17
-		$innerHTML= '';
17
+		$innerHTML = '';
18 18
 		$children = $node->childNodes;
19 19
 		foreach ($children as $child) {
20
-			$innerHTML .= $child->ownerDocument->saveXML( $child );
20
+			$innerHTML .= $child->ownerDocument->saveXML($child);
21 21
 		}
22 22
 		return $innerHTML;
23 23
 	}
Please login to merge, or discard this patch.
api/Lib/Helpers/RegExp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     public static function getFirstMatch($regexp, $target)
18 18
 	{
19 19
 		preg_match_all($regexp, $target, $matches);
20
-		$match = array_key_exists(0,$matches[1]) ? $matches[1][0] : null;
20
+		$match = array_key_exists(0, $matches[1]) ? $matches[1][0] : null;
21 21
 		return $match;
22 22
 	}
23 23
 
Please login to merge, or discard this patch.
api/tests/ExampleTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 	 */
13 13
 	public function testIlluminateConnection()
14 14
 	{
15
-		Illuminate\Database\Capsule\Manager::schema()->create('test', function ($table) {
15
+		Illuminate\Database\Capsule\Manager::schema()->create('test', function($table) {
16 16
 			$table->increments('id');
17 17
 			$table->string('email')->unique();
18 18
 			$table->timestamps();
Please login to merge, or discard this patch.
api/Lib/DsManager/Models/Orm/DsManagerOrm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Illuminate\Database\Eloquent\Model as Eloquent;
5 5
 
6 6
 
7
-abstract class DsManagerOrm extends Eloquent{
7
+abstract class DsManagerOrm extends Eloquent {
8 8
 
9 9
     protected $hidden = [
10 10
         'created_at',
Please login to merge, or discard this patch.
api/Lib/DsManager/Models/Common/DsManagerModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 	 * @param array $array
26 26
 	 * @return mixed
27 27
 	 */
28
-	public static function fromArray($array =[])
28
+	public static function fromArray($array = [])
29 29
 	{
30 30
 		$class = get_called_class();
31 31
 		$class = new $class();
Please login to merge, or discard this patch.
api/Lib/DsManager/Models/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 	 */
64 64
 	function __toString()
65 65
 	{
66
-		return "" . $this->moduleCode;
66
+		return "".$this->moduleCode;
67 67
 	}
68 68
 
69 69
 
Please login to merge, or discard this patch.