Completed
Push — update-jf3-php81 ( 563090...16c816 )
by
unknown
16:59 queued 07:09
created
src/GitHub/GitHub.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 	 */
26 26
 	public function __get($name)
27 27
 	{
28
-		$class = __NAMESPACE__ . '\\Package\\' . ucfirst($name);
28
+		$class = __NAMESPACE__.'\\Package\\'.ucfirst($name);
29 29
 
30 30
 		if (class_exists($class))
31 31
 		{
Please login to merge, or discard this patch.
src/GitHub/Package.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 	 */
24 24
 	public function __get($name)
25 25
 	{
26
-		$class = __NAMESPACE__ . '\\' . $this->package . '\\' . ucfirst($name);
26
+		$class = __NAMESPACE__.'\\'.$this->package.'\\'.ucfirst($name);
27 27
 
28 28
 		if (class_exists($class))
29 29
 		{
Please login to merge, or discard this patch.
src/GitHub/Package/Repositories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	public function getTags($owner, $repo, $page = 0)
50 50
 	{
51 51
 		// Build the request path.
52
-		$path = '/repos/' . $owner . '/' . $repo . '/tags';
52
+		$path = '/repos/'.$owner.'/'.$repo.'/tags';
53 53
 
54 54
 		// Send the request.
55 55
 		$this->apiResponse = $this->client->get($this->fetchUrl($path, $page));
Please login to merge, or discard this patch.
www/index.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 \define('APPROOT', \dirname(__DIR__));
11 11
 
12 12
 // Ensure we've initialized Composer
13
-if (!file_exists(APPROOT . '/vendor/autoload.php'))
13
+if (!file_exists(APPROOT.'/vendor/autoload.php'))
14 14
 {
15 15
 	header('HTTP/1.1 500 Internal Server Error', null, 500);
16 16
 	header('Content-Type: application/json; charset=utf-8');
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	exit;
27 27
 }
28 28
 
29
-require APPROOT . '/vendor/autoload.php';
29
+require APPROOT.'/vendor/autoload.php';
30 30
 
31 31
 try
32 32
 {
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	echo \json_encode(
46 46
 		[
47 47
 			'code'    => $throwable->getCode(),
48
-			'message' => 'An error occurred while executing the application: ' . $throwable->getMessage(),
48
+			'message' => 'An error occurred while executing the application: '.$throwable->getMessage(),
49 49
 			'error'   => true,
50 50
 		]
51 51
 	);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,7 @@
 block discarded – undo
31 31
 try
32 32
 {
33 33
 	(new \Joomla\StatsServer\Kernel\WebKernel)->run();
34
-}
35
-catch (\Throwable $throwable)
34
+} catch (\Throwable $throwable)
36 35
 {
37 36
 	error_log($throwable);
38 37
 
Please login to merge, or discard this patch.
src/Commands/Tags/FetchJoomlaTagsCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,11 +105,11 @@
 block discarded – undo
105 105
 
106 106
 			// Allow the next patch release after this one
107 107
 			$nextPatch  = $explodedVersion[2] + 1;
108
-			$versions[] = $explodedVersion[0] . '.' . $explodedVersion[1] . '.' . $nextPatch;
108
+			$versions[] = $explodedVersion[0].'.'.$explodedVersion[1].'.'.$nextPatch;
109 109
 
110 110
 			// And allow the next minor release after this one
111 111
 			$nextMinor  = $explodedVersion[1] + 1;
112
-			$versions[] = $explodedVersion[0] . '.' . $nextMinor . '.0';
112
+			$versions[] = $explodedVersion[0].'.'.$nextMinor.'.0';
113 113
 		}
114 114
 
115 115
 		if (!$this->filesystem->put('joomla.json', json_encode($versions)))
Please login to merge, or discard this patch.
src/Commands/SnapshotCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 
95 95
 			$this->view->setSource($source);
96 96
 
97
-			$filename .= '_' . $source;
97
+			$filename .= '_'.$source;
98 98
 		}
99 99
 
100 100
 		if (!$this->filesystem->write($filename, $this->view->render()))
Please login to merge, or discard this patch.
src/Commands/SnapshotRecentlyUpdatedCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
 		$source = $input->getOption('source');
80 80
 
81
-		$filename = date('YmdHis') . '_recent';
81
+		$filename = date('YmdHis').'_recent';
82 82
 
83 83
 		if ($source)
84 84
 		{
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
 			$this->view->setSource($source);
97 97
 
98
-			$filename .= '_' . $source;
98
+			$filename .= '_'.$source;
99 99
 		}
100 100
 
101 101
 		if (!$this->filesystem->write($filename, $this->view->render()))
Please login to merge, or discard this patch.
src/Commands/UpdateCommand.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 		{
51 51
 			$this->getApplication()->getLogger()->error('Could not execute `git pull`', ['exception' => $e]);
52 52
 
53
-			$symfonyStyle->error('Error running `git pull`: ' . $e->getMessage());
53
+			$symfonyStyle->error('Error running `git pull`: '.$e->getMessage());
54 54
 
55 55
 			return 1;
56 56
 		}
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 		{
67 67
 			$this->getApplication()->getLogger()->error('Could not update Composer resources', ['exception' => $e]);
68 68
 
69
-			$symfonyStyle->error('Error updating Composer resources: ' . $e->getMessage());
69
+			$symfonyStyle->error('Error updating Composer resources: '.$e->getMessage());
70 70
 
71 71
 			return 1;
72 72
 		}
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
 		try
58 58
 		{
59 59
 			$processHelper->mustRun($output, new Process(['git', 'pull'], APPROOT));
60
-		}
61
-		catch (ProcessFailedException $e)
60
+		} catch (ProcessFailedException $e)
62 61
 		{
63 62
 			$this->getApplication()->getLogger()->error('Could not execute `git pull`', ['exception' => $e]);
64 63
 
@@ -73,8 +72,7 @@  discard block
 block discarded – undo
73 72
 		try
74 73
 		{
75 74
 			$processHelper->mustRun($output, new Process(['composer', 'install', '--no-dev', '-o', '-a'], APPROOT));
76
-		}
77
-		catch (ProcessFailedException $e)
75
+		} catch (ProcessFailedException $e)
78 76
 		{
79 77
 			$this->getApplication()->getLogger()->error('Could not update Composer resources', ['exception' => $e]);
80 78
 
Please login to merge, or discard this patch.
src/Commands/Database/MigrateCommand.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,8 +70,7 @@  discard block
 block discarded – undo
70 70
 		try
71 71
 		{
72 72
 			$this->migrations->migrateDatabase($version);
73
-		}
74
-		catch (\Exception $exception)
73
+		} catch (\Exception $exception)
75 74
 		{
76 75
 			$this->logger->critical(
77 76
 				'Error migrating database',
@@ -86,8 +85,7 @@  discard block
 block discarded – undo
86 85
 		if ($version)
87 86
 		{
88 87
 			$message = sprintf('Database migrated to version "%s".', $version);
89
-		}
90
-		else
88
+		} else
91 89
 		{
92 90
 			$message = 'Database migrated to latest version.';
93 91
 		}
Please login to merge, or discard this patch.