Skip to content

Commit 9a0d5c3

Browse files
committed
Minor phpcs fixes
1 parent 15551f2 commit 9a0d5c3

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

src/Symfony/Component/EventDispatcher/Event.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
* You can call the method stopPropagation() to abort the execution of
2121
* further listeners in your event listener.
2222
*
23-
* @author Guilherme Blanco <[email protected]>
24-
* @author Jonathan Wage <[email protected]>
25-
* @author Roman Borschel <[email protected]>
26-
* @author Bernhard Schussek <[email protected]>
23+
* @author Guilherme Blanco <[email protected]>
24+
* @author Jonathan Wage <[email protected]>
25+
* @author Roman Borschel <[email protected]>
26+
* @author Bernhard Schussek <[email protected]>
2727
*
2828
* @api
2929
*/

src/Symfony/Component/EventDispatcher/EventDispatcher.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
* Listeners are registered on the manager and events are dispatched through the
1818
* manager.
1919
*
20-
* @author Guilherme Blanco <[email protected]>
21-
* @author Jonathan Wage <[email protected]>
22-
* @author Roman Borschel <[email protected]>
23-
* @author Bernhard Schussek <[email protected]>
24-
* @author Fabien Potencier <[email protected]>
25-
* @author Jordi Boggiano <[email protected]>
26-
* @author Jordan Alliot <[email protected]>
20+
* @author Guilherme Blanco <[email protected]>
21+
* @author Jonathan Wage <[email protected]>
22+
* @author Roman Borschel <[email protected]>
23+
* @author Bernhard Schussek <[email protected]>
24+
* @author Fabien Potencier <[email protected]>
25+
* @author Jordi Boggiano <[email protected]>
26+
* @author Jordan Alliot <[email protected]>
2727
*
2828
* @api
2929
*/

src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
* {@link getSubscribedEvents} and registers the subscriber as a listener for all
1818
* returned events.
1919
*
20-
* @author Guilherme Blanco <[email protected]>
21-
* @author Jonathan Wage <[email protected]>
22-
* @author Roman Borschel <[email protected]>
23-
* @author Bernhard Schussek <[email protected]>
20+
* @author Guilherme Blanco <[email protected]>
21+
* @author Jonathan Wage <[email protected]>
22+
* @author Roman Borschel <[email protected]>
23+
* @author Bernhard Schussek <[email protected]>
2424
*
2525
* @api
2626
*/

src/Symfony/Component/HttpFoundation/BinaryFileResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public function prepare(Request $request)
191191
$path = $this->file->getRealPath();
192192
if (strtolower($type) == 'x-accel-redirect') {
193193
// Do X-Accel-Mapping substitutions.
194-
foreach (explode(',', $request->headers->get('X-Accel-Mapping', '')) as $mapping) {
194+
foreach (explode(',', $request->headers->get('X-Accel-Mapping', '')) as $mapping) {
195195
$mapping = explode('=', $mapping, 2);
196196

197197
if (2 == count($mapping)) {

src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ protected function generateDataForMeta(BundleReaderInterface $reader, $tempDir)
164164
}
165165

166166
/**
167-
* @param $rootBundle
167+
* @param ArrayAccessibleResourceBundle $rootBundle
168168
*
169169
* @return array
170170
*/

src/Symfony/Component/PropertyAccess/StringUtil.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public static function singularify($plural)
186186
return $singulars;
187187
}
188188

189-
return $newBase.($firstUpper ? ucFirst($newSuffix) : $newSuffix);
189+
return $newBase.($firstUpper ? ucfirst($newSuffix) : $newSuffix);
190190
}
191191

192192
// Suffix is longer than word

src/Symfony/Component/Security/Acl/Dbal/MutableAclProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ public function updateAcl(MutableAclInterface $acl)
361361
protected function getDeleteAccessControlEntriesSql($oidPK)
362362
{
363363
return sprintf(
364-
'DELETE FROM %s WHERE object_identity_id = %d',
364+
'DELETE FROM %s WHERE object_identity_id = %d',
365365
$this->options['entry_table_name'],
366366
$oidPK
367367
);

0 commit comments

Comments
 (0)