Skip to content

Commit

Permalink
[general] Updating phpcs config (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 4, 2024
1 parent bd78362 commit 27efddd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/phpstan-bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
<?php declare(strict_types = 1);

use DG\BypassFinals;

if (!defined('FB_APP_DIR')) {
define('FB_APP_DIR', 'val');
}

if (!defined('FB_PUBLIC_DIR')) {
define('FB_PUBLIC_DIR', 'val');
}

if (!defined('FB_RESOURCES_DIR')) {
define('FB_RESOURCES_DIR', 'val');
}

if (!defined('FB_TEMP_DIR')) {
define('FB_TEMP_DIR', 'val');
}

if (!defined('FB_LOGS_DIR')) {
define('FB_LOGS_DIR', 'val');
}

if (!defined('FB_CONFIG_DIR')) {
define('FB_CONFIG_DIR', 'val');
}

DG\BypassFinals::enable();
BypassFinals::enable();

0 comments on commit 27efddd

Please sign in to comment.