Completed
Push — master ( 9a3a3c...24148b )
by Michael
14s
created
src/Providers/MonologServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
 		$level = strtoupper($config->get('log.application', $config->get('log.level', 'error')));
91 91
 
92
-		return new StreamHandler(APPROOT . '/logs/stats.log', \constant('\\Monolog\\Logger::' . $level));
92
+		return new StreamHandler(APPROOT.'/logs/stats.log', \constant('\\Monolog\\Logger::'.$level));
93 93
 	}
94 94
 
95 95
 	/**
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
 		$level = strtoupper($config->get('log.database', $config->get('log.level', 'error')));
108 108
 
109
-		return new StreamHandler(APPROOT . '/logs/stats.log', \constant('\\Monolog\\Logger::' . $level));
109
+		return new StreamHandler(APPROOT.'/logs/stats.log', \constant('\\Monolog\\Logger::'.$level));
110 110
 	}
111 111
 
112 112
 	/**
Please login to merge, or discard this patch.
src/Providers/WebApplicationServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
 			'/:source',
136 136
 			DisplayStatisticsController::class,
137 137
 			[
138
-				'source' => '(' . implode('|', StatisticsRepository::ALLOWED_SOURCES) . ')',
138
+				'source' => '('.implode('|', StatisticsRepository::ALLOWED_SOURCES).')',
139 139
 			]
140 140
 		);
141 141
 
Please login to merge, or discard this patch.
src/Providers/FlysystemServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	 */
42 42
 	public function getMigrationsFilesystemService(Container $container): Filesystem
43 43
 	{
44
-		return new Filesystem(new Local(APPROOT . '/etc/migrations'));
44
+		return new Filesystem(new Local(APPROOT.'/etc/migrations'));
45 45
 	}
46 46
 
47 47
 	/**
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 */
54 54
 	public function getSnapshotFilesystemService(Container $container): Filesystem
55 55
 	{
56
-		return new Filesystem(new Local(APPROOT . '/snapshots'));
56
+		return new Filesystem(new Local(APPROOT.'/snapshots'));
57 57
 	}
58 58
 
59 59
 	/**
@@ -65,6 +65,6 @@  discard block
 block discarded – undo
65 65
 	 */
66 66
 	public function getVersionsFilesystemService(Container $container): Filesystem
67 67
 	{
68
-		return new Filesystem(new Local(APPROOT . '/versions'));
68
+		return new Filesystem(new Local(APPROOT.'/versions'));
69 69
 	}
70 70
 }
Please login to merge, or discard this patch.