Passed
Push — develop ( d1d076...95966b )
by Jens
03:19
created
cloudcontrol/library/components/cms/DocumentRouting.php 3 patches
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -12,58 +12,58 @@
 block discarded – undo
12 12
 
13 13
 class DocumentRouting implements CmsRouting
14 14
 {
15
-    /**
16
-     * DocumentRouting constructor.
17
-     * @param $request
18
-     * @param $relativeCmsUri
19
-     * @param CmsComponent $cmsComponent
20
-     */
21
-    public function __construct($request, $relativeCmsUri, $cmsComponent)
22
-    {
23
-        if ($relativeCmsUri == '/documents') {
24
-            $cmsComponent->subTemplate = 'cms/documents';
25
-            $cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENTS, $cmsComponent->storage->getDocuments());
26
-            $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_DOCUMENTS);
27
-        }
28
-        $this->documentRouting($request, $relativeCmsUri, $cmsComponent);
29
-        $this->folderRouting($request, $relativeCmsUri, $cmsComponent);
30
-    }
31
-
32
-
33
-    /**
34
-     * @param $request
35
-     * @param $relativeCmsUri
36
-     * @param CmsComponent $cmsComponent
37
-     * @throws \Exception
38
-     */
39
-    private function documentRouting($request, $relativeCmsUri, $cmsComponent)
40
-    {
41
-        if ($relativeCmsUri == '/documents/new-document' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) {
15
+	/**
16
+	 * DocumentRouting constructor.
17
+	 * @param $request
18
+	 * @param $relativeCmsUri
19
+	 * @param CmsComponent $cmsComponent
20
+	 */
21
+	public function __construct($request, $relativeCmsUri, $cmsComponent)
22
+	{
23
+		if ($relativeCmsUri == '/documents') {
24
+			$cmsComponent->subTemplate = 'cms/documents';
25
+			$cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENTS, $cmsComponent->storage->getDocuments());
26
+			$cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_DOCUMENTS);
27
+		}
28
+		$this->documentRouting($request, $relativeCmsUri, $cmsComponent);
29
+		$this->folderRouting($request, $relativeCmsUri, $cmsComponent);
30
+	}
31
+
32
+
33
+	/**
34
+	 * @param $request
35
+	 * @param $relativeCmsUri
36
+	 * @param CmsComponent $cmsComponent
37
+	 * @throws \Exception
38
+	 */
39
+	private function documentRouting($request, $relativeCmsUri, $cmsComponent)
40
+	{
41
+		if ($relativeCmsUri == '/documents/new-document' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) {
42 42
 			$this->documentOverviewRoute($request, $cmsComponent);
43
-        } elseif ($relativeCmsUri == '/documents/edit-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
43
+		} elseif ($relativeCmsUri == '/documents/edit-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
44 44
 			$this->editDocumentRoute($request, $cmsComponent);
45
-        } elseif ($relativeCmsUri == '/documents/get-brick' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
45
+		} elseif ($relativeCmsUri == '/documents/get-brick' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
46 46
 			$this->getBrickRoute($request, $cmsComponent);
47
-        } else if ($relativeCmsUri == '/documents/delete-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
47
+		} else if ($relativeCmsUri == '/documents/delete-document' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
48 48
 			$this->deleteDocumentRoute($request, $cmsComponent);
49
-        }
50
-    }
51
-
52
-    /**
53
-     * @param $request
54
-     * @param $relativeCmsUri
55
-     * @param CmsComponent $cmsComponent
56
-     */
57
-    private function folderRouting($request, $relativeCmsUri, $cmsComponent)
58
-    {
59
-        if ($relativeCmsUri == '/documents/new-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) {
49
+		}
50
+	}
51
+
52
+	/**
53
+	 * @param $request
54
+	 * @param $relativeCmsUri
55
+	 * @param CmsComponent $cmsComponent
56
+	 */
57
+	private function folderRouting($request, $relativeCmsUri, $cmsComponent)
58
+	{
59
+		if ($relativeCmsUri == '/documents/new-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_PATH])) {
60 60
 			$this->newFolderRoute($request, $cmsComponent);
61
-        } else if ($relativeCmsUri == '/documents/edit-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
61
+		} else if ($relativeCmsUri == '/documents/edit-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
62 62
 			$this->editFolderRoute($request, $cmsComponent);
63
-        } else if ($relativeCmsUri == '/documents/delete-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
63
+		} else if ($relativeCmsUri == '/documents/delete-folder' && isset($request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
64 64
 			$this->deleteFolderRoute($request, $cmsComponent);
65
-        }
66
-    }
65
+		}
66
+	}
67 67
 
68 68
 	/**
69 69
 	 * @param $request
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 		if (isset($request::$get[CmsComponent::PARAMETER_DOCUMENT_TYPE])) {
80 80
 			if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$get[CmsComponent::PARAMETER_DOCUMENT_TYPE], $request::$get[CmsComponent::GET_PARAMETER_PATH])) {
81 81
 				$cmsComponent->storage->addDocument($request::$post);
82
-				header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents');
82
+				header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents');
83 83
 				exit;
84 84
 			}
85 85
 			$cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENT_TYPE, $cmsComponent->storage->getDocumentTypeBySlug($request::$get[CmsComponent::PARAMETER_DOCUMENT_TYPE], true));
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 		} else {
88 88
 			$documentTypes = $cmsComponent->storage->getDocumentTypes();
89 89
 			if (count($documentTypes) < 1) {
90
-				throw new \Exception('No Document Types defined yet. <a href="' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/configuration/document-types/new">Please do so first.</a>');
90
+				throw new \Exception('No Document Types defined yet. <a href="'.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/configuration/document-types/new">Please do so first.</a>');
91 91
 			}
92 92
 			$cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENT_TYPES, $documentTypes);
93 93
 		}
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 		$cmsComponent->setParameter(CmsComponent::PARAMETER_SMALLEST_IMAGE, $cmsComponent->storage->getSmallestImageSet()->slug);
105 105
 		if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$get[CmsComponent::GET_PARAMETER_SLUG])) {
106 106
 			$cmsComponent->storage->saveDocument($request::$post);
107
-			header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents');
107
+			header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents');
108 108
 			exit;
109 109
 		}
110 110
 		$cmsComponent->setParameter(CmsComponent::PARAMETER_DOCUMENT, $cmsComponent->storage->getDocumentBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]));
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	private function deleteDocumentRoute($request, $cmsComponent)
142 142
 	{
143 143
 		$cmsComponent->storage->deleteDocumentBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]);
144
-		header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents');
144
+		header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents');
145 145
 		exit;
146 146
 	}
147 147
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 		$cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_DOCUMENTS);
156 156
 		if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$post[CmsComponent::GET_PARAMETER_PATH])) {
157 157
 			$cmsComponent->storage->addDocumentFolder($request::$post);
158
-			header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents');
158
+			header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents');
159 159
 			exit;
160 160
 		}
161 161
 	}
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
 		array_pop($path);
175 175
 		$path = implode('/', $path);
176 176
 
177
-		$request::$get[CmsComponent::GET_PARAMETER_PATH] = '/' . $path;
177
+		$request::$get[CmsComponent::GET_PARAMETER_PATH] = '/'.$path;
178 178
 
179 179
 		if (isset($request::$post[CmsComponent::POST_PARAMETER_TITLE], $request::$post['content'])) {
180 180
 			$cmsComponent->storage->saveDocumentFolder($request::$post);
181
-			header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents');
181
+			header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents');
182 182
 			exit;
183 183
 		}
184 184
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 	private function deleteFolderRoute($request, $cmsComponent)
194 194
 	{
195 195
 		$cmsComponent->storage->deleteDocumentFolderBySlug($request::$get[CmsComponent::GET_PARAMETER_SLUG]);
196
-		header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/documents');
196
+		header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/documents');
197 197
 		exit;
198 198
 	}
199 199
 }
200 200
\ No newline at end of file
Please login to merge, or discard this patch.
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
 
32 32
 
33 33
     /**
34
-     * @param $request
35
-     * @param $relativeCmsUri
34
+     * @param \library\cc\Request $request
35
+     * @param string $relativeCmsUri
36 36
      * @param CmsComponent $cmsComponent
37 37
      * @throws \Exception
38 38
      */
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @param $request
54
-     * @param $relativeCmsUri
53
+     * @param \library\cc\Request $request
54
+     * @param string $relativeCmsUri
55 55
      * @param CmsComponent $cmsComponent
56 56
      */
57 57
     private function folderRouting($request, $relativeCmsUri, $cmsComponent)
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
 	/**
69 69
 	 * @param $request
70
-	 * @param $cmsComponent
70
+	 * @param CmsComponent $cmsComponent
71 71
 	 *
72 72
 	 * @throws \Exception
73 73
 	 */
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
 	/**
117 117
 	 * @param $request
118
-	 * @param $cmsComponent
118
+	 * @param CmsComponent $cmsComponent
119 119
 	 */
120 120
 	private function getBrickRoute($request, $cmsComponent)
121 121
 	{
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
 	/**
138 138
 	 * @param $request
139
-	 * @param $cmsComponent
139
+	 * @param CmsComponent $cmsComponent
140 140
 	 */
141 141
 	private function deleteDocumentRoute($request, $cmsComponent)
142 142
 	{
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 
163 163
 	/**
164 164
 	 * @param $request
165
-	 * @param $cmsComponent
165
+	 * @param CmsComponent $cmsComponent
166 166
 	 */
167 167
 	private function editFolderRoute($request, $cmsComponent)
168 168
 	{
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 
189 189
 	/**
190 190
 	 * @param $request
191
-	 * @param $cmsComponent
191
+	 * @param CmsComponent $cmsComponent
192 192
 	 */
193 193
 	private function deleteFolderRoute($request, $cmsComponent)
194 194
 	{
Please login to merge, or discard this patch.
cloudcontrol/library/components/FormComponent.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 		if (isset($_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID])) {
163 163
 			$this->formId = $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID];
164 164
 		} else {
165
-			$_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID] = (string)microtime(true);
165
+			$_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID] = (string) microtime(true);
166 166
 			$_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName]['submitted'] = false;
167 167
 			$this->formId = $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID];
168 168
 		}
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 		$postValues = $request::$post;
191 191
 		$postValues[self::PARAMETER_DOCUMENT_TYPE] = $this->documentType;
192 192
 		$postValues[self::GET_PARAMETER_PATH] = $this->responseFolder;
193
-		$postValues['title'] = date('r') . ' - From: ' . $request::$requestUri;
193
+		$postValues['title'] = date('r').' - From: '.$request::$requestUri;
194 194
 
195 195
 		return $postValues;
196 196
 	}
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 	private function setFormParameter($form)
326 326
 	{
327 327
 		if ($this->isFormSubmitted($this->request) || $this->isSubmitAllowed() === false) {
328
-			$this->parameters[$this->formParameterName] = '<a name="' . $this->formId . '"></a>' . $this->thankYouMessage;
328
+			$this->parameters[$this->formParameterName] = '<a name="'.$this->formId.'"></a>'.$this->thankYouMessage;
329 329
 		} else {
330 330
 			$this->parameters[$this->formParameterName] = $form;
331 331
 		}
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	 * submitting the form
148 148
 	 *
149 149
 	 * @param $postValues
150
-	 * @param $storage
150
+	 * @param Storage $storage
151 151
 	 */
152 152
 	protected function postSubmit($postValues, $storage)
153 153
 	{}
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
 	}
318 318
 
319 319
 	/**
320
-	 * @param $form
320
+	 * @param string|null $form
321 321
 	 */
322 322
 	private function setFormParameter($form)
323 323
 	{
Please login to merge, or discard this patch.
cloudcontrol/library/components/CmsComponent.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 				$whitelistIps = explode(',', $this->parameters[self::PARAMETER_WHITELIST_IPS]);
160 160
 				$whitelistIps = array_map("trim", $whitelistIps);
161 161
 				if (!in_array($remoteAddress, $whitelistIps)) {
162
-					throw new \Exception('Ip address ' . $remoteAddress . ' is not on whitelist');
162
+					throw new \Exception('Ip address '.$remoteAddress.' is not on whitelist');
163 163
 				}
164 164
 			}
165 165
 		}
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 				$blacklistIps = explode(',', $this->parameters[self::PARAMETER_BLACKLIST_IPS]);
176 176
 				$blacklistIps = array_map("trim", $blacklistIps);
177 177
 				if (in_array($remoteAddress, $blacklistIps)) {
178
-					throw new \Exception('Ip address ' . $remoteAddress . ' is on blacklist');
178
+					throw new \Exception('Ip address '.$remoteAddress.' is on blacklist');
179 179
 				}
180 180
 			}
181 181
 		}
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 			if ($relativeCmsUri == '/log-off') {
220 220
 				$_SESSION[self::SESSION_PARAMETER_CLOUD_CONTROL] = null;
221 221
 				unset($_SESSION[self::SESSION_PARAMETER_CLOUD_CONTROL]);
222
-				header('Location: ' . $request::$subfolders . $this->parameters[self::PARAMETER_CMS_PREFIX]);
222
+				header('Location: '.$request::$subfolders.$this->parameters[self::PARAMETER_CMS_PREFIX]);
223 223
 				exit;
224 224
 			}
225 225
 		}
Please login to merge, or discard this patch.
cloudcontrol/library/cc/cc.php 2 patches
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -74,12 +74,15 @@
 block discarded – undo
74 74
  * @return string
75 75
  */
76 76
 function humanFileSize($size,$unit="") {
77
-	if( (!$unit && $size >= 1<<30) || $unit == "GB")
78
-		return number_format($size/(1<<30),2)."GB";
79
-	if( (!$unit && $size >= 1<<20) || $unit == "MB")
80
-		return number_format($size/(1<<20),2)."MB";
81
-	if( (!$unit && $size >= 1<<10) || $unit == "KB")
82
-		return number_format($size/(1<<10),2)."KB";
77
+	if( (!$unit && $size >= 1<<30) || $unit == "GB") {
78
+			return number_format($size/(1<<30),2)."GB";
79
+	}
80
+	if( (!$unit && $size >= 1<<20) || $unit == "MB") {
81
+			return number_format($size/(1<<20),2)."MB";
82
+	}
83
+	if( (!$unit && $size >= 1<<10) || $unit == "KB") {
84
+			return number_format($size/(1<<10),2)."KB";
85
+	}
83 86
 	return number_format($size)." bytes";
84 87
 }
85 88
 
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -38,14 +38,14 @@  discard block
 block discarded – undo
38 38
 		return '0 seconds';
39 39
 	}
40 40
 
41
-	$a = array( 365 * 24 * 60 * 60  =>  'year',
41
+	$a = array(365 * 24 * 60 * 60  =>  'year',
42 42
 				30 * 24 * 60 * 60  =>  'month',
43 43
 				24 * 60 * 60  =>  'day',
44 44
 				60 * 60  =>  'hour',
45 45
 				60  =>  'minute',
46 46
 				1  =>  'second'
47 47
 	);
48
-	$a_plural = array( 'year'   => 'years',
48
+	$a_plural = array('year'   => 'years',
49 49
 					   'month'  => 'months',
50 50
 					   'day'    => 'days',
51 51
 					   'hour'   => 'hours',
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 		if ($d >= 1)
60 60
 		{
61 61
 			$r = round($d);
62
-			return $r . ' ' . ($r > 1 ? $a_plural[$str] : $str) . ' ago';
62
+			return $r.' '.($r > 1 ? $a_plural[$str] : $str).' ago';
63 63
 		}
64 64
 	}
65 65
 	return 0;
@@ -73,13 +73,13 @@  discard block
 block discarded – undo
73 73
  * @param string $unit
74 74
  * @return string
75 75
  */
76
-function humanFileSize($size,$unit="") {
77
-	if( (!$unit && $size >= 1<<30) || $unit == "GB")
78
-		return number_format($size/(1<<30),2)."GB";
79
-	if( (!$unit && $size >= 1<<20) || $unit == "MB")
80
-		return number_format($size/(1<<20),2)."MB";
81
-	if( (!$unit && $size >= 1<<10) || $unit == "KB")
82
-		return number_format($size/(1<<10),2)."KB";
76
+function humanFileSize($size, $unit = "") {
77
+	if ((!$unit && $size >= 1 << 30) || $unit == "GB")
78
+		return number_format($size / (1 << 30), 2)."GB";
79
+	if ((!$unit && $size >= 1 << 20) || $unit == "MB")
80
+		return number_format($size / (1 << 20), 2)."MB";
81
+	if ((!$unit && $size >= 1 << 10) || $unit == "KB")
82
+		return number_format($size / (1 << 10), 2)."KB";
83 83
 	return number_format($size)." bytes";
84 84
 }
85 85
 
@@ -133,9 +133,9 @@  discard block
 block discarded – undo
133 133
  *
134 134
  * @return mixed|string
135 135
  */
136
-function slugify($str, $replace=array(), $delimiter='-') {
137
-	if( !empty($replace) ) {
138
-		$str = str_replace((array)$replace, ' ', $str);
136
+function slugify($str, $replace = array(), $delimiter = '-') {
137
+	if (!empty($replace)) {
138
+		$str = str_replace((array) $replace, ' ', $str);
139 139
 	}
140 140
 
141 141
 	$clean = iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $str);
@@ -158,13 +158,13 @@  discard block
 block discarded – undo
158 158
 {
159 159
 	$debug_backtrace = current(debug_backtrace());
160 160
 	if (PHP_SAPI == 'cli') {
161
-		echo 'Dump: ' . $debug_backtrace['file'] . ':' . $debug_backtrace['line'] . "\n";
161
+		echo 'Dump: '.$debug_backtrace['file'].':'.$debug_backtrace['line']."\n";
162 162
 		foreach (func_get_args() as $data) {
163 163
 			var_dump($data);
164 164
 		}
165 165
 	} else {
166 166
 		ob_clean();
167
-		echo '<div>Dump: ' . $debug_backtrace['file'] . ':<b>' . $debug_backtrace['line'] . "</b></div>";
167
+		echo '<div>Dump: '.$debug_backtrace['file'].':<b>'.$debug_backtrace['line']."</b></div>";
168 168
 		echo '<pre>';
169 169
 		foreach (func_get_args() as $data) {
170 170
 			echo "<code>";
@@ -212,8 +212,8 @@  discard block
 block discarded – undo
212 212
  */
213 213
 function utf8Convert($array)
214 214
 {
215
-	array_walk_recursive($array, function(&$item){
216
-		if(!mb_detect_encoding($item, 'utf-8', true)){
215
+	array_walk_recursive($array, function(&$item) {
216
+		if (!mb_detect_encoding($item, 'utf-8', true)) {
217 217
 			$item = utf8_encode($item);
218 218
 		}
219 219
 	});
Please login to merge, or discard this patch.
cloudcontrol/library/search/Indexer.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 		$this->resetIndex();
59 59
 		$this->addLog('Retrieving documents to be indexed.');
60 60
 		$documents = $this->storage->getDocuments();
61
-		$this->addLog('Start Document Term Count for ' . count($documents) . ' documents');
61
+		$this->addLog('Start Document Term Count for '.count($documents).' documents');
62 62
 		$this->createDocumentTermCount($documents);
63 63
 		$this->addLog('Start Document Term Frequency.');
64 64
 		$this->createDocumentTermFrequency();
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 	private function addLog($string)
160 160
 	{
161 161
 		$currentTime = round(microtime(true) * 1000);
162
-		$this->log .= date('d-m-Y H:i:s - ') . str_pad($string, 50, " ", STR_PAD_RIGHT) . "\t" . ($currentTime - $this->lastLog) . 'ms since last log. ' . "\t" . ($currentTime - $this->loggingStart) . 'ms since start.' . PHP_EOL;
162
+		$this->log .= date('d-m-Y H:i:s - ').str_pad($string, 50, " ", STR_PAD_RIGHT)."\t".($currentTime - $this->lastLog).'ms since last log. '."\t".($currentTime - $this->loggingStart).'ms since start.'.PHP_EOL;
163 163
 		$this->lastLog = round(microtime(true) * 1000);
164 164
 	}
165 165
 
@@ -171,8 +171,8 @@  discard block
 block discarded – undo
171 171
 	protected function getSearchDbHandle()
172 172
 	{
173 173
 		if ($this->searchDbHandle === null) {
174
-			$path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . $this->storageDir . DIRECTORY_SEPARATOR;
175
-			$this->searchDbHandle = new \PDO('sqlite:' . $path . self::SEARCH_TEMP_DB);
174
+			$path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$this->storageDir.DIRECTORY_SEPARATOR;
175
+			$this->searchDbHandle = new \PDO('sqlite:'.$path.self::SEARCH_TEMP_DB);
176 176
 		}
177 177
 		return $this->searchDbHandle;
178 178
 	}
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	public function replaceOldIndex()
184 184
 	{
185 185
 		$this->searchDbHandle = null;
186
-		$path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . $this->storageDir . DIRECTORY_SEPARATOR;
187
-		rename($path . self::SEARCH_TEMP_DB, $path . 'search.db');
186
+		$path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$this->storageDir.DIRECTORY_SEPARATOR;
187
+		rename($path.self::SEARCH_TEMP_DB, $path.'search.db');
188 188
 	}
189 189
 }
190 190
\ No newline at end of file
Please login to merge, or discard this patch.
cloudcontrol/library/search/indexer/TermFieldLengthNorm.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -45,18 +45,18 @@  discard block
 block discarded – undo
45 45
 		if ($stmt === false) {
46 46
 			$errorInfo = $db->errorInfo();
47 47
 			$errorMsg = $errorInfo[2];
48
-			throw new \Exception('SQLite Exception: ' . $errorMsg . ' in SQL: <br /><pre>' . $sql . '</pre>');
48
+			throw new \Exception('SQLite Exception: '.$errorMsg.' in SQL: <br /><pre>'.$sql.'</pre>');
49 49
 		}
50 50
 		if (($stmt->execute()) === false) {
51 51
 			$errorInfo = $db->errorInfo();
52 52
 			$errorMsg = $errorInfo[2];
53
-			throw new \Exception('SQLite Exception: ' . $errorMsg . ' in SQL: <br /><pre>' . $sql . '</pre>');
53
+			throw new \Exception('SQLite Exception: '.$errorMsg.' in SQL: <br /><pre>'.$sql.'</pre>');
54 54
 		}
55 55
 		$uniqueFieldsPerDocument = $stmt->fetchAll(\PDO::FETCH_OBJ);
56 56
 		$values = array();
57 57
 		$i = 0;
58 58
 		foreach ($uniqueFieldsPerDocument as $fieldRow) {
59
-			$values[] = 'UPDATE term_frequency SET termNorm = 1/sqrt(' . intval($fieldRow->termCount) . ') WHERE documentPath = ' . $db->quote($fieldRow->documentPath) . ' AND field = ' . $db->quote($fieldRow->field) . ';';
59
+			$values[] = 'UPDATE term_frequency SET termNorm = 1/sqrt('.intval($fieldRow->termCount).') WHERE documentPath = '.$db->quote($fieldRow->documentPath).' AND field = '.$db->quote($fieldRow->field).';';
60 60
 			$i += 1;
61 61
 			if ($i >= Indexer::SQLITE_MAX_COMPOUND_SELECT) {
62 62
 				$this->executeUpdateTermNorm($values, $db);
@@ -76,13 +76,13 @@  discard block
 block discarded – undo
76 76
 	 */
77 77
 	private function executeUpdateTermNorm($values, $db)
78 78
 	{
79
-		$sql  = 'BEGIN TRANSACTION;' . PHP_EOL;
80
-		$sql .= implode(PHP_EOL, $values) . PHP_EOL;
79
+		$sql  = 'BEGIN TRANSACTION;'.PHP_EOL;
80
+		$sql .= implode(PHP_EOL, $values).PHP_EOL;
81 81
 		$sql .= 'COMMIT;';
82 82
 		if (($db->exec($sql)) === false) {
83 83
 			$errorInfo = $db->errorInfo();
84 84
 			$errorMsg = $errorInfo[2];
85
-			throw new \Exception('SQLite Exception: ' . $errorMsg . ' in SQL: <br /><pre>' . $sql . '</pre>');
85
+			throw new \Exception('SQLite Exception: '.$errorMsg.' in SQL: <br /><pre>'.$sql.'</pre>');
86 86
 		}
87 87
 	}
88 88
 }
89 89
\ No newline at end of file
Please login to merge, or discard this patch.
cloudcontrol/library/search/indexer/InverseDocumentFrequency.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,14 +47,14 @@
 block discarded – undo
47 47
 		if (!$stmt = $db->prepare($sql)) {
48 48
 			$errorInfo = $db->errorInfo();
49 49
 			$errorMsg = $errorInfo[2];
50
-			throw new \Exception('SQLite Exception: ' . $errorMsg . ' in SQL: <br /><pre>' . $sql . '</pre>');
50
+			throw new \Exception('SQLite Exception: '.$errorMsg.' in SQL: <br /><pre>'.$sql.'</pre>');
51 51
 		}
52 52
 		$stmt->bindValue(':documentCount', $this->documentCount);
53 53
 		$result = $stmt->execute();
54 54
 		if ($result === false) {
55 55
 			$errorInfo = $db->errorInfo();
56 56
 			$errorMsg = $errorInfo[2];
57
-			throw new \Exception('SQLite Exception: ' . $errorMsg . ' in SQL: <br /><pre>' . $sql . '</pre>');
57
+			throw new \Exception('SQLite Exception: '.$errorMsg.' in SQL: <br /><pre>'.$sql.'</pre>');
58 58
 		}
59 59
 	}
60 60
 }
61 61
\ No newline at end of file
Please login to merge, or discard this patch.
cloudcontrol/library/search/indexer/TermFrequency.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 			$i = 0;
53 53
 			foreach ($termsForDocumentField as $term) {
54 54
 				$frequency = intval($term->count) / $documentField->totalTermCount;
55
-				$values[] = $quotedDocumentPath . ','  . $quotedField . ', ' . $db->quote($term->term) . ', ' . $db->quote($frequency);
55
+				$values[] = $quotedDocumentPath.','.$quotedField.', '.$db->quote($term->term).', '.$db->quote($frequency);
56 56
 				$i += 1;
57 57
 				if ($i >= Indexer::SQLITE_MAX_COMPOUND_SELECT) {
58 58
 					$this->executeStore($sql, $values, $db);
@@ -101,11 +101,11 @@  discard block
 block discarded – undo
101 101
 
102 102
 	private function executeStore($sql, $values, $db)
103 103
 	{
104
-		$sql .= '(' . implode('),' . PHP_EOL . '(', $values) . ');';
104
+		$sql .= '('.implode('),'.PHP_EOL.'(', $values).');';
105 105
 		if (!$db->query($sql)) {
106 106
 			$errorInfo = $db->errorInfo();
107 107
 			$errorMsg = $errorInfo[2];
108
-			throw new \Exception('SQLite Exception: ' . $errorMsg . ' in SQL: <br /><pre>' . $sql . '</pre>');
108
+			throw new \Exception('SQLite Exception: '.$errorMsg.' in SQL: <br /><pre>'.$sql.'</pre>');
109 109
 		}
110 110
 	}
111 111
 
Please login to merge, or discard this patch.
cloudcontrol/library/search/indexer/TermCount.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	protected function applyFilters($tokens)
49 49
 	{
50 50
 		foreach ($this->filters as $filterName) {
51
-			$filterClassName = '\library\search\filters\\' . $filterName;
51
+			$filterClassName = '\library\search\filters\\'.$filterName;
52 52
 			$filter = new $filterClassName($tokens);
53 53
 			$tokens = $filter->getFilterResults();
54 54
 		}
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 		foreach ($documentTermCount as $field => $countArray) {
69 69
 			$quotedField = $db->quote($field);
70 70
 			foreach ($countArray as $term => $count) {
71
-				$values[] = $quotedDocumentPath . ', ' . $db->quote($term) . ', ' . $db->quote($count) . ', ' . $quotedField;
71
+				$values[] = $quotedDocumentPath.', '.$db->quote($term).', '.$db->quote($count).', '.$quotedField;
72 72
 				$i += 1;
73 73
 				if ($i >= Indexer::SQLITE_MAX_COMPOUND_SELECT) {
74 74
 					$this->executeStoreDocumentTermCount($values, $sql, $db);
@@ -92,13 +92,13 @@  discard block
 block discarded – undo
92 92
 	 */
93 93
 	protected function executeStoreDocumentTermCount($values, $sql, $db)
94 94
 	{
95
-		$sql .= '(' . implode('),' . PHP_EOL . '(', $values) . ');';
95
+		$sql .= '('.implode('),'.PHP_EOL.'(', $values).');';
96 96
 
97 97
 		$stmt = $db->prepare($sql);
98 98
 		if ($stmt === false || !$stmt->execute()) {
99 99
 			$errorInfo = $db->errorInfo();
100 100
 			$errorMsg = $errorInfo[2];
101
-			throw new \Exception('SQLite Exception: ' . $errorMsg . ' in SQL: <br /><pre>' . $sql . '</pre>');
101
+			throw new \Exception('SQLite Exception: '.$errorMsg.' in SQL: <br /><pre>'.$sql.'</pre>');
102 102
 		}
103 103
 	}
104 104
 }
105 105
\ No newline at end of file
Please login to merge, or discard this patch.