Completed
Push — master ( 5cee0a...f3db70 )
by George
02:48 queued 01:20
created
src/Kernel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,11 +121,11 @@
 block discarded – undo
121 121
 	private function loadConfiguration(): Registry
122 122
 	{
123 123
 		$registry = new Registry;
124
-		$registry->loadFile(APPROOT . '/etc/config.dist.json');
124
+		$registry->loadFile(APPROOT.'/etc/config.dist.json');
125 125
 
126
-		if (file_exists(APPROOT . '/etc/config.json'))
126
+		if (file_exists(APPROOT.'/etc/config.json'))
127 127
 		{
128
-			$registry->loadFile(APPROOT . '/etc/config.json');
128
+			$registry->loadFile(APPROOT.'/etc/config.json');
129 129
 		}
130 130
 
131 131
 		return $registry;
Please login to merge, or discard this patch.
src/Repositories/StatisticsRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 			return $this->db->setQuery(
65 65
 				$this->db->getQuery(true)
66 66
 					->select('*')
67
-					->from($this->db->quoteName('#__jstats_counter_' . $column))
67
+					->from($this->db->quoteName('#__jstats_counter_'.$column))
68 68
 			)->loadAssocList();
69 69
 		}
70 70
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 			$return[$column] = $this->db->setQuery(
76 76
 				$this->db->getQuery(true)
77 77
 					->select('*')
78
-					->from($this->db->quoteName('#__jstats_counter_' . $column))
78
+					->from($this->db->quoteName('#__jstats_counter_'.$column))
79 79
 			)->loadAssocList();
80 80
 		}
81 81
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 			$return[$column] = $this->db->setQuery(
99 99
 				$this->db->getQuery(true)
100 100
 					->select($column)
101
-					->select('COUNT(' . $column . ') AS count')
101
+					->select('COUNT('.$column.') AS count')
102 102
 					->from($this->db->quoteName('#__jstats'))
103 103
 					->where('modified BETWEEN DATE_SUB(NOW(), INTERVAL 90 DAY) AND NOW()')
104 104
 					->group($column)
Please login to merge, or discard this patch.
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.
src/Commands/Tags/FetchPhpTagsCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,14 +115,14 @@
 block discarded – undo
115 115
 			$explodedVersion = explode('.', $version);
116 116
 
117 117
 			$nextPatch  = $explodedVersion[2] + 1;
118
-			$versions[] = $explodedVersion[0] . '.' . $explodedVersion[1] . '.' . $nextPatch;
118
+			$versions[] = $explodedVersion[0].'.'.$explodedVersion[1].'.'.$nextPatch;
119 119
 		}
120 120
 
121 121
 		// Use $branch from the previous loop to allow the next minor version (PHP's master branch)
122 122
 		$explodedVersion = explode('.', $branch);
123 123
 
124 124
 		$nextMinor   = $explodedVersion[1] + 1;
125
-		$nextRelease = $explodedVersion[0] . '.' . $nextMinor . '.0';
125
+		$nextRelease = $explodedVersion[0].'.'.$nextMinor.'.0';
126 126
 
127 127
 		// There won't be a PHP 7.5, change next release to 8.0 if needed
128 128
 		if ($nextRelease === '7.5.0')
Please login to merge, or discard this patch.