Completed
Pull Request — master (#251)
by Sander
03:09
created
lib/Activity.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
 	protected $URLGenerator;
57 57
 
58
-	public function __construct( IURLGenerator $URLGenerator) {
58
+	public function __construct(IURLGenerator $URLGenerator) {
59 59
 		$this->URLGenerator = $URLGenerator;
60 60
 	}
61 61
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 		$l = \OC::$server->getL10N(self::APP_NAME);
262 262
 		return array(
263 263
 			'top' => array(),
264
-			'apps' => array( self::FILTER_PASSMAN =>
264
+			'apps' => array(self::FILTER_PASSMAN =>
265 265
 				array(
266 266
 					'id' => 'passman',
267 267
 					'name' => (string) $l->t('Passwords'),
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
 	 * @return boolean
279 279
 	 */
280 280
 	public function isFilterValid($filterValue) {
281
-		return $filterValue ===  self::FILTER_PASSMAN;
281
+		return $filterValue === self::FILTER_PASSMAN;
282 282
 	}
283 283
 
284 284
 	/**
Please login to merge, or discard this patch.
templates/part.admin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 		$data = @simplexml_load_string($xml);
28 28
 		libxml_disable_entity_loader($loadEntities);
29 29
 		if ($data !== false) {
30
-			$version = (string)$data->version;
30
+			$version = (string) $data->version;
31 31
 		} else {
32 32
 			libxml_clear_errors();
33 33
 		}
Please login to merge, or discard this patch.