Completed
Push — master ( 647fef...85f29c )
by Nazar
04:40
created
core/classes/Session.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 		'ip'          => 'text',
63 63
 		'data'        => 'json'
64 64
 	];
65
-	protected $table      = '[prefix]sessions';
65
+	protected $table = '[prefix]sessions';
66 66
 	/**
67 67
 	 * Returns database index
68 68
 	 *
Please login to merge, or discard this patch.
core/classes/Permission.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 		'group' => 'text',
23 23
 		'label' => 'text'
24 24
 	];
25
-	protected $table      = '[prefix]permissions';
25
+	protected $table = '[prefix]permissions';
26 26
 	/**
27 27
 	 * Array of all permissions for quick selecting
28 28
 	 *
Please login to merge, or discard this patch.
core/classes/Request/File_stream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 	 */
52 52
 	public function stream_read ($length) {
53 53
 		fseek($this->stream, $this->position);
54
-		$bytes          = fread($this->stream, $length);
54
+		$bytes = fread($this->stream, $length);
55 55
 		$this->position += strlen($bytes);
56 56
 		return $bytes;
57 57
 	}
Please login to merge, or discard this patch.
core/classes/Page/Assets_processing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -374,7 +374,7 @@
 block discarded – undo
374 374
 				/**
375 375
 				 * If content is link to CSS file
376 376
 				 */
377
-				$css  = static::css(
377
+				$css = static::css(
378 378
 					file_get_contents("$dir/$url"),
379 379
 					"$dir/$url",
380 380
 					$target_directory_path,
Please login to merge, or discard this patch.