Skip to content

Commit cacf537

Browse files
laravel-ide-helpergithub-actions[bot]
authored andcommitted
composer fix-style
1 parent a0b7513 commit cacf537

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

resources/views/helper.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323
*/
2424
<?php
2525
$s1 = ' ';
26-
$s2 = $s1.$s1;
27-
$s3 = $s1.$s2;
26+
$s2 = $s1 . $s1;
27+
$s3 = $s1 . $s2;
2828
?>
2929
<?php foreach ($namespaces_by_extends_ns as $namespace => $aliases) : ?>
3030
namespace <?= $namespace === '__root' ? '' : trim($namespace, '\\') ?> {
3131
<?php foreach ($aliases as $alias) : ?>
32-
<?php echo trim($alias->getDocComment($s1)) ."\n{$s1}" . $alias->getClassType() ?> <?= $alias->getExtendsClass() ?> {
32+
<?php echo trim($alias->getDocComment($s1)) . "\n{$s1}" . $alias->getClassType() ?> <?= $alias->getExtendsClass() ?> {
3333
<?php foreach ($alias->getMethods() as $method) : ?>
34-
<?= trim($method->getDocComment($s2)) ."\n{$s2}" ?>public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
34+
<?= trim($method->getDocComment($s2)) . "\n{$s2}" ?>public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
3535
{<?php if ($method->getDeclaringClass() !== $method->getRoot()) : ?>
36-
<?= "\n".$s3?>//Method inherited from <?= $method->getDeclaringClass() ?>
36+
<?= "\n" . $s3?>//Method inherited from <?= $method->getDeclaringClass() ?>
3737
<?php endif; ?>
3838

3939
<?php if ($method->isInstanceCall()) : ?>
@@ -53,11 +53,11 @@
5353
namespace <?= $namespace === '__root' ? '' : trim($namespace, '\\') ?> {
5454
<?php foreach ($aliases as $alias) : ?>
5555
<?php if ($alias->getExtendsNamespace() === '\Illuminate\Database\Eloquent') : ?>
56-
<?= "\n".$alias->getPhpDocTemplates($s1) ."\n" ?>
56+
<?= "\n" . $alias->getPhpDocTemplates($s1) . "\n" ?>
5757
<?php endif?>
58-
<?= $s1. $alias->getClassType() ?> <?= $alias->getShortName() ?> extends <?= $alias->getExtends() ?> {<?php if ($alias->getExtendsNamespace() === '\Illuminate\Database\Eloquent') : ?>
58+
<?= $s1 . $alias->getClassType() ?> <?= $alias->getShortName() ?> extends <?= $alias->getExtends() ?> {<?php if ($alias->getExtendsNamespace() === '\Illuminate\Database\Eloquent') : ?>
5959
<?php foreach ($alias->getMethods() as $method) : ?>
60-
<?= $s2 . trim($method->getDocComment($s2))."\n" ?>
60+
<?= $s2 . trim($method->getDocComment($s2)) . "\n" ?>
6161
<?= $s2 ?>public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
6262
<?= $s2?>{<?php if ($method->getDeclaringClass() !== $method->getRoot()) : ?>
6363
<?= $s2 ?>//Method inherited from <?= $method->getDeclaringClass() ?>

0 commit comments

Comments
 (0)