Skip to content

Commit 4082daa

Browse files
committed
Apply PSR2 single_quote php cs fixer
1 parent 1452e63 commit 4082daa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Command/BuildAssetsCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
7070
$this->processStyle($group, $files, $fs, $input, $output);
7171
}
7272

73-
$fontsdir = $this->builddir . "/fonts";
73+
$fontsdir = $this->builddir . '/fonts';
7474
$fs->exists($fontsdir) or $fs->mkdir($fontsdir);
7575

7676
foreach($this->findFonts() as $name => $path) {

Composer/ScriptHandler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ protected static function getPhpArguments()
126126
*/
127127
public static function fetchThemeVendors(CommandEvent $event)
128128
{
129-
$event->getIO()->write("Installing theme assets", true);
129+
$event->getIO()->write('Installing theme assets', true);
130130
$options = self::getOptions($event);
131131
$consoleDir = self::getConsoleDir($event, 'installing theme assets');
132132

Theme/ThemeManager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function __construct($container, $resolverClass = null)
3030
$this->resolverClass = $resolverClass ?: 'Avanzu\AdminThemeBundle\Util\DependencyResolver';
3131
}
3232

33-
public function registerScript($id, $src, $deps = [], $location = "bottom")
33+
public function registerScript($id, $src, $deps = [], $location = 'bottom')
3434
{
3535
if (!isset($this->javascripts[$id])) {
3636
$this->javascripts[$id] = [

Twig/AvanzuAdminExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function getFilters()
4040
];
4141
}
4242

43-
public function bodyClass($classes = "")
43+
public function bodyClass($classes = '')
4444
{
4545
$classList = [$classes];
4646
$options = $this->options;

0 commit comments

Comments
 (0)