Skip to content

Commit 1a1ef33

Browse files
Fix php-cs-fixer error
1 parent 77d5d1b commit 1a1ef33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SassBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function setOutput(SymfonyStyle $output): void
9292
*/
9393
public static function guessCssNameFromSassFile(string $sassFile, string $outputDirectory, string|int $fileName = null): string
9494
{
95-
if (\is_null($fileName) || \is_int($fileName)) {
95+
if (null === $fileName || \is_int($fileName)) {
9696
$fileName = basename($sassFile, '.scss');
9797
}
9898

0 commit comments

Comments
 (0)