@@ -47,23 +47,23 @@ discard block |
||
47 | 47 | |
48 | 48 | $pwd = getcwd(); |
49 | 49 | if (is_dir($buildDir)) { |
50 | - system("rm -rf ${buildDir}"); |
|
50 | + system("rm -rf ${builddir}"); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | // build env |
54 | 54 | $filesystem->mkdir($buildDir, 0755); |
55 | 55 | $progress->advance(); |
56 | 56 | |
57 | - $filesystem->mirror($sourceDir, "${buildDir}/${name}"); |
|
57 | + $filesystem->mirror($sourceDir, "${builddir}/${name}"); |
|
58 | 58 | $progress->advance(); |
59 | 59 | |
60 | - PurgeVendorsCommand::cleanVendors("${buildDir}/${name}/vendor", $progress); |
|
61 | - FixAutoloaderCommand::fix("${buildDir}/${name}/vendor", $progress); |
|
60 | + PurgeVendorsCommand::cleanVendors("${builddir}/${name}/vendor", $progress); |
|
61 | + FixAutoloaderCommand::fix("${builddir}/${name}/vendor", $progress); |
|
62 | 62 | |
63 | 63 | $writableArray = [ |
64 | - "${buildDir}/${name}/var/cache", |
|
65 | - "${buildDir}/${name}/var/log", |
|
66 | - "${buildDir}/${name}/public/uploads", |
|
64 | + "${builddir}/${name}/var/cache", |
|
65 | + "${builddir}/${name}/var/log", |
|
66 | + "${builddir}/${name}/public/uploads", |
|
67 | 67 | ]; |
68 | 68 | $filesystem->chmod($writableArray, 0777); |
69 | 69 | $progress->advance(); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $zip = new ZipArchive(); |
87 | 87 | $fileName = "${name}.zip"; |
88 | 88 | if (true !== $zip->open($fileName, ZipArchive::CREATE)) { |
89 | - $output->writeln("<error>Error creating ${fileName}</error>"); |
|
89 | + $output->writeln("<error>Error creating ${filename}</error>"); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | foreach ($allFiles as $file) { |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | |
100 | 100 | // build tar |
101 | 101 | $fileName = "${name}.tar"; |
102 | - system("tar cp ${name} > ${fileName}"); |
|
102 | + system("tar cp ${name} > ${filename}"); |
|
103 | 103 | $progress->advance(); |
104 | - system("gzip ${fileName}"); |
|
104 | + system("gzip ${filename}"); |
|
105 | 105 | $progress->advance(); |
106 | 106 | |
107 | 107 | // checksums |
@@ -117,17 +117,17 @@ discard block |
||
117 | 117 | -----------------sha1sums----------------- |
118 | 118 | ${zipSha1} ${name}.zip |
119 | 119 | ${tarSha1} ${name}.tar.gz |
120 | -CHECKSUM; |
|
120 | +checksum; |
|
121 | 121 | file_put_contents("${name}-checksum.txt", $checksum); |
122 | 122 | $progress->advance(); |
123 | 123 | |
124 | 124 | // cleanup |
125 | - system("rm -rf ${buildDir} ${name}"); |
|
125 | + system("rm -rf ${builddir} ${name}"); |
|
126 | 126 | chdir($pwd); |
127 | 127 | $progress->advance(); |
128 | 128 | $progress->finish(); |
129 | 129 | |
130 | - $output->writeln("<info>Artifacts built in ${buildDir}/ folder</info>"); |
|
130 | + $output->writeln("<info>Artifacts built in ${builddir}/ folder</info>"); |
|
131 | 131 | |
132 | 132 | return 0; |
133 | 133 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | throw new RuntimeException('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application.'); |
32 | 32 | } else { |
33 | 33 | // load all the .env files |
34 | - (new Dotenv(false))->loadEnv(dirname(__DIR__).'/.env'); |
|
34 | + (new Dotenv(false))->loadEnv(dirname(__DIR__) . '/.env'); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | $_SERVER += $_ENV; |
@@ -54,7 +54,7 @@ |
||
54 | 54 | |
55 | 55 | $query = $qb->getQuery(); |
56 | 56 | |
57 | - return (int)$query->getSingleScalarResult(); |
|
57 | + return (int) $query->getSingleScalarResult(); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | public function getGroups( |
@@ -45,12 +45,12 @@ discard block |
||
45 | 45 | |
46 | 46 | if (null !== $groupType) { |
47 | 47 | $qb->where('g.gtype = :gtype') |
48 | - ->setParameter('gtype', $groupType); |
|
48 | + ->setParameter('gtype', $groupType); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | if (null !== $excludedState) { |
52 | 52 | $qb->andWhere('g.state != :state') |
53 | - ->setParameter('state', $excludedState); |
|
53 | + ->setParameter('state', $excludedState); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | $query = $qb->getQuery(); |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | // already another group by that name. |
140 | 140 | if (is_numeric($excludedGroupId) && $excludedGroupId > 0) { |
141 | 141 | $qb->andWhere($qb->expr()->neq('g.gid', ':ggid')) |
142 | - ->setParameter('ggid', $excludedGroupId); |
|
142 | + ->setParameter('ggid', $excludedGroupId); |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | $query = $qb->getQuery(); |
@@ -59,8 +59,8 @@ |
||
59 | 59 | switch ($oldVersion) { |
60 | 60 | case '2.3.2': |
61 | 61 | case '2.4.0': |
62 | - $this->setVar('mailwarning', (bool)$this->getVar('mailwarning')); |
|
63 | - $this->setVar('hideclosed', (bool)$this->getVar('hideclosed')); |
|
62 | + $this->setVar('mailwarning', (bool) $this->getVar('mailwarning')); |
|
63 | + $this->setVar('hideclosed', (bool) $this->getVar('hideclosed')); |
|
64 | 64 | $this->setVar('hidePrivate', false); |
65 | 65 | case '2.4.1': |
66 | 66 | /** @var UserEntity $anonymousUser */ |
@@ -68,6 +68,6 @@ |
||
68 | 68 | ->andWhere(Criteria::expr()->gt('lastused', $since)); |
69 | 69 | $online = $this->sessionRepository->matching($c)->count(); |
70 | 70 | |
71 | - return (bool)$online; |
|
71 | + return (bool) $online; |
|
72 | 72 | } |
73 | 73 | } |
@@ -94,7 +94,7 @@ |
||
94 | 94 | string $title = '' |
95 | 95 | ): string { |
96 | 96 | if (empty($userId) || $userId < 1) { |
97 | - return (string)$userId; |
|
97 | + return (string) $userId; |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | return $this->determineProfileLink($userId, null, $class, $image, $maxLength, $title); |
@@ -132,7 +132,7 @@ |
||
132 | 132 | */ |
133 | 133 | public function approve(UserEntity $user): void |
134 | 134 | { |
135 | - $user->setApprovedBy((int)$this->currentUserApi->get('uid')); |
|
135 | + $user->setApprovedBy((int) $this->currentUserApi->get('uid')); |
|
136 | 136 | $user->setApprovedDate(new DateTime()); |
137 | 137 | |
138 | 138 | $user->setActivated(UsersConstant::ACTIVATED_ACTIVE); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | public function setRouteEntriesPerPage(int $routeEntriesPerPage): void |
83 | 83 | { |
84 | - if ((int)$this->routeEntriesPerPage !== $routeEntriesPerPage) { |
|
84 | + if ((int) $this->routeEntriesPerPage !== $routeEntriesPerPage) { |
|
85 | 85 | $this->routeEntriesPerPage = $routeEntriesPerPage; |
86 | 86 | } |
87 | 87 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | public function setShowOnlyOwnEntries(bool $showOnlyOwnEntries): void |
95 | 95 | { |
96 | - if ((bool)$this->showOnlyOwnEntries !== $showOnlyOwnEntries) { |
|
96 | + if ((bool) $this->showOnlyOwnEntries !== $showOnlyOwnEntries) { |
|
97 | 97 | $this->showOnlyOwnEntries = $showOnlyOwnEntries; |
98 | 98 | } |
99 | 99 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | public function setAllowModerationSpecificCreatorForRoute(bool $allowModerationSpecificCreatorForRoute): void |
107 | 107 | { |
108 | - if ((bool)$this->allowModerationSpecificCreatorForRoute !== $allowModerationSpecificCreatorForRoute) { |
|
108 | + if ((bool) $this->allowModerationSpecificCreatorForRoute !== $allowModerationSpecificCreatorForRoute) { |
|
109 | 109 | $this->allowModerationSpecificCreatorForRoute = $allowModerationSpecificCreatorForRoute; |
110 | 110 | } |
111 | 111 | } |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | |
118 | 118 | public function setAllowModerationSpecificCreationDateForRoute(bool $allowModerationSpecificCreationDateForRoute): void |
119 | 119 | { |
120 | - if ((bool)$this->allowModerationSpecificCreationDateForRoute !== $allowModerationSpecificCreationDateForRoute) { |
|
120 | + if ((bool) $this->allowModerationSpecificCreationDateForRoute !== $allowModerationSpecificCreationDateForRoute) { |
|
121 | 121 | $this->allowModerationSpecificCreationDateForRoute = $allowModerationSpecificCreationDateForRoute; |
122 | 122 | } |
123 | 123 | } |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | |
222 | 222 | public function setId(int $id = null): void |
223 | 223 | { |
224 | - if ((int)$this->id !== $id) { |
|
224 | + if ((int) $this->id !== $id) { |
|
225 | 225 | $this->id = $id; |
226 | 226 | } |
227 | 227 | } |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | |
330 | 330 | public function setPrependBundlePrefix(bool $prependBundlePrefix): void |
331 | 331 | { |
332 | - if ((bool)$this->prependBundlePrefix !== $prependBundlePrefix) { |
|
332 | + if ((bool) $this->prependBundlePrefix !== $prependBundlePrefix) { |
|
333 | 333 | $this->prependBundlePrefix = $prependBundlePrefix; |
334 | 334 | } |
335 | 335 | } |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | |
342 | 342 | public function setTranslatable(bool $translatable): void |
343 | 343 | { |
344 | - if ((bool)$this->translatable !== $translatable) { |
|
344 | + if ((bool) $this->translatable !== $translatable) { |
|
345 | 345 | $this->translatable = $translatable; |
346 | 346 | } |
347 | 347 | } |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | |
426 | 426 | public function setSort(int $sort): void |
427 | 427 | { |
428 | - if ((int)$this->sort !== $sort) { |
|
428 | + if ((int) $this->sort !== $sort) { |
|
429 | 429 | $this->sort = $sort; |
430 | 430 | } |
431 | 431 | } |