Skip to content

Commit

Permalink
style: fix phpcs errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed Oct 26, 2023
1 parent cf90bbe commit 193a8f4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion test/resources/Loader/SiteKitLoader/missingIdResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

/* Bootstrap */
if (!isset($context)) {
$context = include(__DIR__ . '/./WEB-IES/sitekit-module/php/bootstrapper.php');
$context = include(
__DIR__ .
'/./WEB-IES/sitekit-module/php/bootstrapper.php'
);
}
if (!isset($lifecycle)) {
$lifecycle = $context->getAttribute('lifecycle');
Expand Down
5 changes: 4 additions & 1 deletion test/resources/Loader/SiteKitLoader/missingNameResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

/* Bootstrap */
if (!isset($context)) {
$context = include(__DIR__ . '/./WEB-IES/sitekit-module/php/bootstrapper.php');
$context = include(
__DIR__ .
'/./WEB-IES/sitekit-module/php/bootstrapper.php'
);
}
if (!isset($lifecycle)) {
$lifecycle = $context->getAttribute('lifecycle');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

/* Bootstrap */
if (!isset($context)) {
$context = include(__DIR__ . '/./WEB-IES/sitekit-module/php/bootstrapper.php');
$context = include(
__DIR__ .
'/./WEB-IES/sitekit-module/php/bootstrapper.php'
);
}
if (!isset($lifecycle)) {
$lifecycle = $context->getAttribute('lifecycle');
Expand Down
5 changes: 4 additions & 1 deletion test/resources/Loader/SiteKitLoader/validResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

/* Bootstrap */
if (!isset($context)) {
$context = include(__DIR__ . '/./WEB-IES/sitekit-module/php/bootstrapper.php');
$context = include(
__DIR__ .
'/./WEB-IES/sitekit-module/php/bootstrapper.php'
);
}
if (!isset($lifecycle)) {
$lifecycle = $context->getAttribute('lifecycle');
Expand Down

0 comments on commit 193a8f4

Please sign in to comment.