Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibelar committed Jun 13, 2024
1 parent a0feb52 commit 38295ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app-test/_unit-test/table-filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

require_once __DIR__ . '/../init-ui.php';


if ($locale = Ui::getQueryParamValue('locale')) {
\Fohn\Ui\Component\Utils::requireFLatPickrLocale(\Fohn\Ui\Service\Ui::page(), $locale);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ public static function copyView(View $view): View
*/
public static function viewDump(View $view, string $dumpWhen, bool $includeJs = true): void
{
if (Ui::getQueryParamValue(self::DUMP_PARAM_NAME) === $dumpWhen){
if (self::getQueryParamValue(self::DUMP_PARAM_NAME) === $dumpWhen) {
static::app()->terminateHtml(static::service()->getDumpPageHtml($view, $includeJs));
}
}
Expand Down

0 comments on commit 38295ed

Please sign in to comment.