Skip to content

Commit

Permalink
Fix path generation for assets:install
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannes Giesenow committed Jul 25, 2024
1 parent 504f0e8 commit a16f179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ElbformatIconBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ElbformatIconBundle extends Bundle
{
public function getPath(): string
{
return dirname(__DIR__.'/..');
return realpath(__DIR__.'/..');

Check failure on line 13 in src/ElbformatIconBundle.php

View workflow job for this annotation

GitHub Actions / Static code analysis

Method Elbformat\IconBundle\ElbformatIconBundle::getPath() should return string but returns string|false.

Check failure on line 13 in src/ElbformatIconBundle.php

View workflow job for this annotation

GitHub Actions / Static code analysis

Method Elbformat\IconBundle\ElbformatIconBundle::getPath() should return string but returns string|false.
}

}

0 comments on commit a16f179

Please sign in to comment.