Completed
Push — mysql_improvements ( 2e95ce...dedbef )
by Michael
03:52
created
src/Controllers/SubmitControllerCreate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 		}
156 156
 
157 157
 		// Import the valid release listing
158
-		$path = APPROOT . '/versions/joomla.json';
158
+		$path = APPROOT.'/versions/joomla.json';
159 159
 
160 160
 		if (!file_exists($path))
161 161
 		{
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 		}
221 221
 
222 222
 		// Import the valid release listing
223
-		$path = APPROOT . '/versions/php.json';
223
+		$path = APPROOT.'/versions/php.json';
224 224
 
225 225
 		if (!file_exists($path))
226 226
 		{
Please login to merge, or discard this patch.
src/Providers/DatabaseServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	{
69 69
 		return new Migrations(
70 70
 			$container->get('db'),
71
-			new Filesystem(new Local(APPROOT . '/etc'))
71
+			new Filesystem(new Local(APPROOT.'/etc'))
72 72
 		);
73 73
 	}
74 74
 }
Please login to merge, or discard this patch.
src/Providers/CacheServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 				// If the path is relative, make it absolute... Sorry Windows users, this breaks support for your environment
70 70
 				if (substr($path, 0, 1) !== '/')
71 71
 				{
72
-					$path = APPROOT . '/' . $path;
72
+					$path = APPROOT.'/'.$path;
73 73
 				}
74 74
 
75 75
 				$options = [
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
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
 		$level = strtoupper($config->get('log.application', $config->get('log.level', 'error')));
95 95
 
96
-		return new StreamHandler(APPROOT . '/logs/stats.log', constant('\\Monolog\\Logger::' . $level));
96
+		return new StreamHandler(APPROOT.'/logs/stats.log', constant('\\Monolog\\Logger::'.$level));
97 97
 	}
98 98
 
99 99
 	/**
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 		// If database debugging is enabled then force the logger's error level to DEBUG, otherwise use the level defined in the app config
114 114
 		$level = $config->get('database.debug', false) ? 'DEBUG' : strtoupper($config->get('log.database', $config->get('log.level', 'error')));
115 115
 
116
-		return new StreamHandler(APPROOT . '/logs/stats.log', constant('\\Monolog\\Logger::' . $level));
116
+		return new StreamHandler(APPROOT.'/logs/stats.log', constant('\\Monolog\\Logger::'.$level));
117 117
 	}
118 118
 
119 119
 	/**
Please login to merge, or discard this patch.
src/CliApplication.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,11 +89,11 @@
 block discarded – undo
89 89
 	public function outputTitle(string $title, string $subTitle = '', int $width = 60) : CliApplication
90 90
 	{
91 91
 		$this->out(str_repeat('-', $width));
92
-		$this->out(str_repeat(' ', $width / 2 - (strlen($title) / 2)) . '<title>' . $title . '</title>');
92
+		$this->out(str_repeat(' ', $width / 2 - (strlen($title) / 2)).'<title>'.$title.'</title>');
93 93
 
94 94
 		if ($subTitle)
95 95
 		{
96
-			$this->out(str_repeat(' ', $width / 2 - (strlen($subTitle) / 2)) . '<b>' . $subTitle . '</b>');
96
+			$this->out(str_repeat(' ', $width / 2 - (strlen($subTitle) / 2)).'<b>'.$subTitle.'</b>');
97 97
 		}
98 98
 
99 99
 		$this->out(str_repeat('-', $width));
Please login to merge, or discard this patch.
src/Database/Migrations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
 	 */
162 162
 	private function doMigration(string $version)
163 163
 	{
164
-		$sqlFile = 'migrations/' . $version . '.sql';
164
+		$sqlFile = 'migrations/'.$version.'.sql';
165 165
 
166 166
 		if (!$this->filesystem->has($sqlFile))
167 167
 		{
Please login to merge, or discard this patch.
src/Controllers/DisplayControllerGet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 		// Serve cached data if the cache layer is enabled and the raw data source is not requested
69 69
 		if ($this->getApplication()->get('cache.enabled', false) && !$authorizedRaw)
70 70
 		{
71
-			$key = md5(get_class($this->view) . __METHOD__ . $source);
71
+			$key = md5(get_class($this->view).__METHOD__.$source);
72 72
 
73 73
 			if ($this->cache->hasItem($key))
74 74
 			{
Please login to merge, or discard this patch.
www/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @license    http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License Version 2 or Later
7 7
  */
8 8
 
9
-require dirname(__DIR__) . '/boot.php';
9
+require dirname(__DIR__).'/boot.php';
10 10
 
11 11
 use Joomla\Application\{
12 12
 	AbstractApplication, AbstractWebApplication
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 $container = (new Container)
25 25
 	->registerServiceProvider(new ApplicationServiceProvider)
26 26
 	->registerServiceProvider(new CacheServiceProvider)
27
-	->registerServiceProvider(new ConfigServiceProvider(APPROOT . '/etc/config.json'))
27
+	->registerServiceProvider(new ConfigServiceProvider(APPROOT.'/etc/config.json'))
28 28
 	->registerServiceProvider(new DatabaseServiceProvider)
29 29
 	->registerServiceProvider(new GitHubServiceProvider)
30 30
 	->registerServiceProvider(new MonologServiceProvider);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
 	$response = [
61 61
 		'error' => true,
62
-		'message' => 'An error occurred while executing the application: ' . $e->getMessage()
62
+		'message' => 'An error occurred while executing the application: '.$e->getMessage()
63 63
 	];
64 64
 
65 65
 	echo json_encode($response);
Please login to merge, or discard this patch.
src/Commands/InstallCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 					->out('1) Yes')
78 78
 					->out('2) No')
79 79
 					->out()
80
-					->out('<question>' . g11n3t('Select:') . '</question>', false);
80
+					->out('<question>'.g11n3t('Select:').'</question>', false);
81 81
 
82 82
 				$in = trim($this->getApplication()->in());
83 83
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 				$this->getApplication()->out('No database found.')
100 100
 					->out('Creating the database...', false);
101 101
 
102
-				$this->db->setQuery('CREATE DATABASE ' . $this->db->quoteName($this->getApplication()->get('database.name')))
102
+				$this->db->setQuery('CREATE DATABASE '.$this->db->quoteName($this->getApplication()->get('database.name')))
103 103
 					->execute();
104 104
 
105 105
 				$this->db->select($this->getApplication()->get('database.name'));
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 	 */
163 163
 	private function processSql() : InstallCommand
164 164
 	{
165
-		$fName = APPROOT . '/etc/mysql.sql';
165
+		$fName = APPROOT.'/etc/mysql.sql';
166 166
 
167 167
 		if (!file_exists($fName))
168 168
 		{
Please login to merge, or discard this patch.