Skip to content

Commit 1dad87d

Browse files
committed
Format IDE helper
1 parent cacf537 commit 1dad87d

File tree

1 file changed

+75
-75
lines changed

1 file changed

+75
-75
lines changed

resources/views/helper.php

+75-75
Original file line numberDiff line numberDiff line change
@@ -13,118 +13,118 @@
1313
// phpcs:ignoreFile
1414

1515
/**
16-
* A helper file for Laravel, to provide autocomplete information to your IDE
17-
* Generated for Laravel <?= app()->version() ?>.
18-
*
19-
* This file should not be included in your code, only analyzed by your IDE!
20-
*
21-
* @author Barry vd. Heuvel <[email protected]>
22-
* @see https://github.com/barryvdh/laravel-ide-helper
23-
*/
16+
* A helper file for Laravel, to provide autocomplete information to your IDE
17+
* Generated for Laravel <?= app()->version() ?>.
18+
*
19+
* This file should not be included in your code, only analyzed by your IDE!
20+
*
21+
* @author Barry vd. Heuvel <[email protected]>
22+
* @see https://github.com/barryvdh/laravel-ide-helper
23+
*/
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) : ?>
30-
namespace <?= $namespace === '__root' ? '' : trim($namespace, '\\') ?> {
30+
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() ?>)
35-
{<?php if ($method->getDeclaringClass() !== $method->getRoot()) : ?>
36-
<?= "\n" . $s3?>//Method inherited from <?= $method->getDeclaringClass() ?>
37-
<?php endif; ?>
34+
<?= trim($method->getDocComment($s2)) ."\n{$s2}" ?>public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
35+
{<?php if ($method->getDeclaringClass() !== $method->getRoot()) : ?>
36+
<?= "\n".$s3?>//Method inherited from <?= $method->getDeclaringClass() ?>
37+
<?php endif; ?>
3838

39-
<?php if ($method->isInstanceCall()) : ?>
40-
<?= $s3 ?>/** @var <?=$method->getRoot()?> $instance */
41-
<?php endif?>
42-
<?= $s3 . ($method->shouldReturn() ? 'return ' : '') ?><?= $method->getRootMethodCall() ?>;
43-
}
39+
<?php if ($method->isInstanceCall()) : ?>
40+
<?= $s3 ?>/** @var <?=$method->getRoot()?> $instance */
41+
<?php endif?>
42+
<?= $s3 . ($method->shouldReturn() ? 'return ' : '') ?><?= $method->getRootMethodCall() ?>;
43+
}
4444

4545
<?php endforeach; ?>
46-
}
47-
<?php endforeach; ?>
4846
}
47+
<?php endforeach; ?>
48+
}
4949

5050
<?php endforeach; ?>
5151

5252
<?php foreach ($namespaces_by_alias_ns as $namespace => $aliases) : ?>
53-
namespace <?= $namespace === '__root' ? '' : trim($namespace, '\\') ?> {
54-
<?php foreach ($aliases as $alias) : ?>
55-
<?php if ($alias->getExtendsNamespace() === '\Illuminate\Database\Eloquent') : ?>
56-
<?= "\n" . $alias->getPhpDocTemplates($s1) . "\n" ?>
57-
<?php endif?>
58-
<?= $s1 . $alias->getClassType() ?> <?= $alias->getShortName() ?> extends <?= $alias->getExtends() ?> {<?php if ($alias->getExtendsNamespace() === '\Illuminate\Database\Eloquent') : ?>
59-
<?php foreach ($alias->getMethods() as $method) : ?>
60-
<?= $s2 . trim($method->getDocComment($s2)) . "\n" ?>
61-
<?= $s2 ?>public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
62-
<?= $s2?>{<?php if ($method->getDeclaringClass() !== $method->getRoot()) : ?>
63-
<?= $s2 ?>//Method inherited from <?= $method->getDeclaringClass() ?>
64-
<?php endif; ?>
53+
namespace <?= $namespace === '__root' ? '' : trim($namespace, '\\') ?> {
54+
<?php foreach ($aliases as $alias) : ?>
55+
<?php if ($alias->getExtendsNamespace() === '\Illuminate\Database\Eloquent') : ?>
56+
<?= "\n".$alias->getPhpDocTemplates($s1) ."\n" ?>
57+
<?php endif?>
58+
<?= $s1. $alias->getClassType() ?> <?= $alias->getShortName() ?> extends <?= $alias->getExtends() ?> {<?php if ($alias->getExtendsNamespace() === '\Illuminate\Database\Eloquent') : ?>
59+
<?php foreach ($alias->getMethods() as $method) : ?>
60+
<?= $s2 . trim($method->getDocComment($s2))."\n" ?>
61+
<?= $s2 ?>public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
62+
<?= $s2?>{<?php if ($method->getDeclaringClass() !== $method->getRoot()) : ?>
63+
<?= $s2 ?>//Method inherited from <?= $method->getDeclaringClass() ?>
64+
<?php endif; ?>
6565

66-
<?php if ($method->isInstanceCall()) : ?>
67-
<?= $s3 ?>/** @var <?=$method->getRoot()?> $instance */
68-
<?php endif?>
69-
<?= $s3 . ($method->shouldReturn() ? 'return ' : '') ?><?= $method->getRootMethodCall() ?>;
70-
<?= $s2 ?>}
66+
<?php if ($method->isInstanceCall()) : ?>
67+
<?= $s3 ?>/** @var <?=$method->getRoot()?> $instance */
68+
<?php endif?>
69+
<?= $s3 . ($method->shouldReturn() ? 'return ' : '') ?><?= $method->getRootMethodCall() ?>;
70+
<?= $s2 ?>}
7171

72-
<?php endforeach; ?>
73-
<?php endif; ?>}
74-
<?php endforeach; ?>
75-
}
72+
<?php endforeach; ?>
73+
<?php endif; ?>}
74+
<?php endforeach; ?>
75+
}
7676

7777
<?php endforeach; ?>
7878

7979
<?php foreach($real_time_facades as $name): ?>
80-
<?php $nested = explode('\\', str_replace('\\' . class_basename($name), '', $name)); ?>
81-
namespace <?php echo implode('\\', $nested); ?> {
80+
<?php $nested = explode('\\', str_replace('\\' . class_basename($name), '', $name)); ?>
81+
namespace <?php echo implode('\\', $nested); ?> {
8282
/**
83-
* @mixin <?= str_replace('Facades', '', $name) ?>
84-
*/
83+
* @mixin <?= str_replace('Facades', '', $name) ?>
84+
*/
8585
class <?= class_basename($name) ?> extends <?= str_replace('Facades', '', $name) ?> {}
86-
}
86+
}
8787
<?php endforeach; ?>
8888

8989
<?php if ($helpers) : ?>
90-
namespace {
90+
namespace {
9191
<?= $helpers ?>
92-
}
92+
}
9393
<?php endif; ?>
9494

9595
<?php if ($include_fluent) : ?>
96-
namespace Illuminate\Support {
96+
namespace Illuminate\Support {
9797
/**
98-
* Methods commonly used in migrations
99-
*
100-
* @method Fluent after(string $column) Add the after modifier
101-
* @method Fluent charset(string $charset) Add the character set modifier
102-
* @method Fluent collation(string $collation) Add the collation modifier
103-
* @method Fluent comment(string $comment) Add comment
104-
* @method Fluent default($value) Add the default modifier
105-
* @method Fluent first() Select first row
106-
* @method Fluent index(string $name = null) Add the in dex clause
107-
* @method Fluent on(string $table) `on` of a foreign key
108-
* @method Fluent onDelete(string $action) `on delete` of a foreign key
109-
* @method Fluent onUpdate(string $action) `on update` of a foreign key
110-
* @method Fluent primary() Add the primary key modifier
111-
* @method Fluent references(string $column) `references` of a foreign key
112-
* @method Fluent nullable(bool $value = true) Add the nullable modifier
113-
* @method Fluent unique(string $name = null) Add unique index clause
114-
* @method Fluent unsigned() Add the unsigned modifier
115-
* @method Fluent useCurrent() Add the default timestamp value
116-
* @method Fluent change() Add the change modifier
117-
*/
98+
* Methods commonly used in migrations
99+
*
100+
* @method Fluent after(string $column) Add the after modifier
101+
* @method Fluent charset(string $charset) Add the character set modifier
102+
* @method Fluent collation(string $collation) Add the collation modifier
103+
* @method Fluent comment(string $comment) Add comment
104+
* @method Fluent default($value) Add the default modifier
105+
* @method Fluent first() Select first row
106+
* @method Fluent index(string $name = null) Add the in dex clause
107+
* @method Fluent on(string $table) `on` of a foreign key
108+
* @method Fluent onDelete(string $action) `on delete` of a foreign key
109+
* @method Fluent onUpdate(string $action) `on update` of a foreign key
110+
* @method Fluent primary() Add the primary key modifier
111+
* @method Fluent references(string $column) `references` of a foreign key
112+
* @method Fluent nullable(bool $value = true) Add the nullable modifier
113+
* @method Fluent unique(string $name = null) Add unique index clause
114+
* @method Fluent unsigned() Add the unsigned modifier
115+
* @method Fluent useCurrent() Add the default timestamp value
116+
* @method Fluent change() Add the change modifier
117+
*/
118118
class Fluent {}
119-
}
119+
}
120120
<?php endif ?>
121121

122122
<?php foreach ($factories as $factory) : ?>
123-
namespace <?=$factory->getNamespaceName()?> {
123+
namespace <?=$factory->getNamespaceName()?> {
124124
/**
125125
* @method \Illuminate\Database\Eloquent\Collection|<?=$factory->getShortName()?>[]|<?=$factory->getShortName()?> create($attributes = [])
126126
* @method \Illuminate\Database\Eloquent\Collection|<?=$factory->getShortName()?>[]|<?=$factory->getShortName()?> make($attributes = [])
127127
*/
128128
class <?=$factory->getShortName()?>FactoryBuilder extends \Illuminate\Database\Eloquent\FactoryBuilder {}
129-
}
129+
}
130130
<?php endforeach; ?>

0 commit comments

Comments
 (0)