File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 29
29
<?php foreach ($ namespaces_by_extends_ns as $ namespace => $ aliases ) : ?>
30
30
namespace <?= $ namespace === '__root ' ? '' : trim ($ namespace , '\\' ) ?> {
31
31
<?php foreach ($ aliases as $ alias ) : ?>
32
- <?php echo trim ($ alias ->getDocComment ($ s1 )) . "\n{$ s1 }" . $ alias ->getClassType () ?> <?= $ alias ->getExtendsClass () ?> <?php if ($ alias ->shouldExtendParentClass ()): ?> extends <?= $ alias ->getParentClass () ?> <?php endif ; ?> {
32
+ <?php echo trim ($ alias ->getDocComment ($ s1 )) . "\n{$ s1 }" . $ alias ->getClassType () ?> <?= $ alias ->getExtendsClass () ?> <?php if ($ alias ->shouldExtendParentClass ()): ?> extends <?= $ alias ->getParentClass () ?> <?php endif ; ?> {
33
33
<?php foreach ($ alias ->getMethods () as $ method ) : ?>
34
34
<?= trim ($ method ->getDocComment ($ s2 )) . "\n{$ s2 }" ?> public static function <?= $ method ->getName () ?> (<?= $ method ->getParamsWithDefault () ?> )
35
35
{<?php if ($ method ->getDeclaringClass () !== $ method ->getRoot ()) : ?>
76
76
77
77
<?php endforeach ; ?>
78
78
79
- <?php foreach ($ real_time_facades as $ name ): ?>
79
+ <?php foreach ($ real_time_facades as $ name ): ?>
80
80
<?php $ nested = explode ('\\' , str_replace ('\\' . class_basename ($ name ), '' , $ name )); ?>
81
81
namespace <?php echo implode ('\\' , $ nested ); ?> {
82
82
/**
Original file line number Diff line number Diff line change 81
81
82
82
<?php if (isset ($ expectedArgumentSets )): ?>
83
83
<?php foreach ($ expectedArgumentSets as $ name => $ argumentsList ) : ?>
84
- registerArgumentsSet('<?= $ name ?> ', <?php foreach ($ argumentsList as $ i => $ arg ) : ?> <?php if ($ i % 5 == 0 ) {
84
+ registerArgumentsSet('<?= $ name ?> ', <?php foreach ($ argumentsList as $ i => $ arg ) : ?> <?php if ($ i % 5 == 0 ) {
85
85
echo "\n" ;
86
86
} ?> <?= var_export ($ arg , true ); ?> ,<?php endforeach ; ?> );
87
87
<?php endforeach ; ?>
You can’t perform that action at this time.
0 commit comments