Completed
Push — master ( a12ace...998a95 )
by Federico
02:48
created
dist/jate/modules/Module/Module.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -7,51 +7,51 @@  discard block
 block discarded – undo
7 7
 		public $data;
8 8
 		public function __construct() {
9 9
 			$this->name			= get_class($this);
10
-			$this->modules	= [];
10
+			$this->modules = [];
11 11
 			$this->files		= [];
12
-			$this->required	= [];
12
+			$this->required = [];
13 13
 			$this->data			= [];
14 14
 		}
15 15
 		// abstract public function config();
16 16
 		// abstract public function init();
17 17
 		// abstract public function draw();
18 18
 		public function getCss() {
19
-			return $this->getRequire("getCss",".css");
19
+			return $this->getRequire("getCss", ".css");
20 20
 		}
21 21
 		public function getJs() {
22
-			return $this->getRequire("getJs",".js");
22
+			return $this->getRequire("getJs", ".js");
23 23
 		}
24 24
 		public function getJsVariables() {
25 25
 			$temp = [];
26 26
 			foreach ($this->required as $i)
27 27
 				if (is_array($i))
28
-					array_push($temp,$i);
28
+					array_push($temp, $i);
29 29
 			foreach ($this->modules as $i)
30
-				$temp = array_merge( $temp, $i->getJsVariables() );
30
+				$temp = array_merge($temp, $i->getJsVariables());
31 31
 			foreach ($this->files as $i)
32 32
 				if (is_array($i))
33
-					array_push($temp,$i);
33
+					array_push($temp, $i);
34 34
 			return $temp;
35 35
 		}
36
-		public function addModules( $_mods ) {
36
+		public function addModules($_mods) {
37 37
 			foreach ($_mods as $value)
38 38
 				$this->addModule($value);
39 39
 		}
40
-		public function addModule( $_mod ) {
40
+		public function addModule($_mod) {
41 41
 			$this->modules[$_mod->name] = $_mod;
42 42
 		}
43
-		public function addFiles( $_files ) {
43
+		public function addFiles($_files) {
44 44
 			foreach ($_files as $value)
45 45
 				$this->addFile($value);
46 46
 		}
47
-		public function addFile( $_file ) {
47
+		public function addFile($_file) {
48 48
 			array_push($this->files, $_file);
49 49
 		}
50
-		public function addFilesRequired( $_files ) {
50
+		public function addFilesRequired($_files) {
51 51
 			foreach ($_files as $value)
52 52
 				$this->addFileRequired($value);
53 53
 		}
54
-		public function addFileRequired( $_file ) {
54
+		public function addFileRequired($_file) {
55 55
 			array_push($this->required, $_file);
56 56
 		}
57 57
 		protected function addDipendences() {
@@ -59,16 +59,16 @@  discard block
 block discarded – undo
59 59
 			$this->data["js"] = $this->getJs();
60 60
 			$this->data["jsVariables"] = $this->getJsVariables();
61 61
 		}
62
-		protected function getRequire( $_function, $_extenction) {
62
+		protected function getRequire($_function, $_extenction) {
63 63
 			$temp = [];
64 64
 			foreach ($this->required as $i)
65 65
 				if (!is_array($i) && strpos($i, $_extenction) !== FALSE)
66
-					array_push($temp,$i);
66
+					array_push($temp, $i);
67 67
 			foreach ($this->modules as $i)
68
-				$temp = array_merge( $temp, $i->$_function() );
68
+				$temp = array_merge($temp, $i->$_function());
69 69
 			foreach ($this->files as $i)
70 70
 				if (!is_array($i) && strpos($i, $_extenction) !== FALSE)
71
-					array_push($temp,$i);
71
+					array_push($temp, $i);
72 72
 			return $temp;
73 73
 		}
74 74
 	}
Please login to merge, or discard this patch.