Skip to content

Commit c0e2557

Browse files
committed
StyleCi
1 parent 0bb721b commit c0e2557

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+96
-2
lines changed

.styleci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@ preset: laravel
22

33
enabled:
44
- concat_with_spaces
5+
- phpdoc_separation
56

67
disabled:
78
- phpdoc_no_package
89
- concat_without_spaces
10+
- laravel_phpdoc_alignment
11+
- laravel_phpdoc_separation
912

1013
finder:
1114
exclude:

app/Exceptions/Handler.php

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public function report(Exception $exception)
5151
* @param \Exception $exception
5252
*
5353
* @return \Illuminate\Http\Response
54+
*
5455
* @throws \Illuminate\Auth\Access\AuthorizationException
5556
*/
5657
public function render($request, Exception $exception)

app/HMS/Composers/ProxyComposer.php

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public function __construct(
3939
* Bind data to the view.
4040
*
4141
* @param View $view
42+
*
4243
* @return void
4344
*/
4445
public function compose(View $view)

app/HMS/Doctrine/CarbonType.php

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public function convertToDatabaseValue($value, AbstractPlatform $platform)
5656
* @param AbstractPlatform $platform
5757
*
5858
* @return Carbon|null
59+
*
5960
* @throws ConversionException
6061
* @throws InvalidArgumentException
6162
*/

app/HMS/Entities/Governance/Proxy.php

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class Proxy
2323

2424
/**
2525
* User designating a proxy.
26+
*
2627
* @var User
2728
*/
2829
protected $principal;

app/HMS/Factories/Banking/AccountFactory.php

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ protected static function generatePaymentRef()
5959
* Generate a unique payment reference.
6060
*
6161
* @return string A unique (at the time of function-call) payment reference.
62+
*
6263
* @link http://www.bacs.co.uk/Bacs/Businesses/BacsDirectCredit/Receiving/Pages/PaymentReferenceInformation.aspx
6364
*/
6465
protected function generateUniquePaymentRef()

app/HMS/Repositories/Instrumentation/Doctrine/DoctrineEventRepository.php

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public function paginateByService(Service $service, $perPage = 50, $pageName = '
3232

3333
/**
3434
* save Event to the DB.
35+
*
3536
* @param Event $event
3637
*/
3738
public function save(Event $event)

app/HMS/Repositories/Instrumentation/Doctrine/DoctrineServiceRepository.php

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public function findAll()
2020

2121
/**
2222
* save Service to the DB.
23+
*
2324
* @param Service $service
2425
*/
2526
public function save(Service $service)

app/HMS/Repositories/Instrumentation/EventRepository.php

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public function paginateByService(Service $service, $perPage = 15, $pageName = '
1818

1919
/**
2020
* save Event to the DB.
21+
*
2122
* @param Event $event
2223
*/
2324
public function save(Event $event);

app/HMS/Repositories/Instrumentation/ServiceRepository.php

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public function findAll();
1515

1616
/**
1717
* save Service to the DB.
18+
*
1819
* @param Service $service
1920
*/
2021
public function save(Service $service);

app/Http/Controllers/Api/Auth/CanCheckController.php

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public function __construct()
2121
* Handle the incoming request.
2222
*
2323
* @param \Illuminate\Http\Request $request
24+
*
2425
* @return \Illuminate\Http\Response
2526
*/
2627
public function __invoke(Request $request)

app/Http/Controllers/Api/Gatekeeper/RegisterRfidTagController.php

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public function __construct(
5757
* Handle the incoming request.
5858
*
5959
* @param \Illuminate\Http\Request $request
60+
*
6061
* @return \Illuminate\Http\Response
6162
*/
6263
public function __invoke(Request $request)

app/Http/Controllers/Api/Members/BoxController.php

+7
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ public function __construct(
115115
* @param \Illuminate\Http\Request $request
116116
*
117117
* @return \Illuminate\Http\Response
118+
*
118119
* @throws \Doctrine\ORM\EntityNotFoundException
119120
* @throws \Illuminate\Auth\Access\AuthorizationException
120121
*/
@@ -144,6 +145,7 @@ public function index(Request $request)
144145
* @param Box $box the Box
145146
*
146147
* @return \Illuminate\Http\Response
148+
*
147149
* @throws \Illuminate\Auth\Access\AuthorizationException
148150
*/
149151
public function show(Box $box)
@@ -161,6 +163,7 @@ public function show(Box $box)
161163
* @param \Illuminate\Http\Request $request
162164
*
163165
* @return \Illuminate\Http\Response
166+
*
164167
* @throws \Doctrine\ORM\EntityNotFoundException
165168
* @throws \Illuminate\Auth\Access\AuthorizationException
166169
*/
@@ -261,6 +264,7 @@ public function store(Request $request)
261264
* @param Box $box
262265
*
263266
* @return \Illuminate\Http\Response
267+
*
264268
* @throws \Illuminate\Auth\Access\AuthorizationException
265269
*/
266270
public function printLabel(Box $box)
@@ -280,6 +284,7 @@ public function printLabel(Box $box)
280284
* @param Box $box
281285
*
282286
* @return \Illuminate\Http\Response
287+
*
283288
* @throws \Illuminate\Auth\Access\AuthorizationException
284289
*/
285290
public function markInUse(Box $box)
@@ -342,6 +347,7 @@ public function markInUse(Box $box)
342347
* @param Box $box
343348
*
344349
* @return \Illuminate\Http\Response
350+
*
345351
* @throws \Illuminate\Auth\Access\AuthorizationException
346352
*/
347353
public function markAbandoned(Box $box)
@@ -366,6 +372,7 @@ public function markAbandoned(Box $box)
366372
* @param Box $box
367373
*
368374
* @return \Illuminate\Http\Response
375+
*
369376
* @throws \Illuminate\Auth\Access\AuthorizationException
370377
*/
371378
public function markRemoved(Box $box)

app/Http/Controllers/Api/Members/ProjectController.php

+7
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public function __construct(
6363
* @param \Illuminate\Http\Request $request
6464
*
6565
* @return \Illuminate\Http\Response
66+
*
6667
* @throws \Doctrine\ORM\EntityNotFoundException
6768
* @throws \Illuminate\Auth\Access\AuthorizationException
6869
*/
@@ -112,6 +113,7 @@ public function store(Request $request)
112113
* @param Project $project
113114
*
114115
* @return \Illuminate\Http\Response
116+
*
115117
* @throws \Illuminate\Auth\Access\AuthorizationException
116118
*/
117119
public function show(Project $project)
@@ -130,6 +132,7 @@ public function show(Project $project)
130132
* @param Project $project
131133
*
132134
* @return \Illuminate\Http\Response
135+
*
133136
* @throws \Illuminate\Auth\Access\AuthorizationException
134137
*/
135138
public function update(Request $request, Project $project)
@@ -156,6 +159,7 @@ public function update(Request $request, Project $project)
156159
* @param Project $project
157160
*
158161
* @return \Illuminate\Http\Response
162+
*
159163
* @throws \Illuminate\Auth\Access\AuthorizationException
160164
*/
161165
public function printLabel(Project $project)
@@ -175,6 +179,7 @@ public function printLabel(Project $project)
175179
* @param Project $project
176180
*
177181
* @return \Illuminate\Http\Response
182+
*
178183
* @throws \Illuminate\Auth\Access\AuthorizationException
179184
*/
180185
public function markActive(Project $project)
@@ -195,6 +200,7 @@ public function markActive(Project $project)
195200
* @param Project $project
196201
*
197202
* @return \Illuminate\Http\Response
203+
*
198204
* @throws \Illuminate\Auth\Access\AuthorizationException
199205
*/
200206
public function markAbandoned(Project $project)
@@ -215,6 +221,7 @@ public function markAbandoned(Project $project)
215221
* @param Project $project
216222
*
217223
* @return \Illuminate\Http\Response
224+
*
218225
* @throws \Illuminate\Auth\Access\AuthorizationException
219226
*/
220227
public function markComplete(Project $project)

app/Http/Controllers/Api/UserController.php

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public function __construct(
5555
* @param User $user
5656
*
5757
* @return \Illuminate\Http\Response
58+
*
5859
* @throws \Illuminate\Auth\Access\AuthorizationException
5960
*/
6061
public function index()
@@ -70,6 +71,7 @@ public function index()
7071
* @param User $user
7172
*
7273
* @return \Illuminate\Http\Response
74+
*
7375
* @throws \Illuminate\Auth\Access\AuthorizationException
7476
*/
7577
public function show(User $user)
@@ -88,6 +90,7 @@ public function show(User $user)
8890
* @param User $user
8991
*
9092
* @return \Illuminate\Http\Response
93+
*
9194
* @throws \Illuminate\Auth\Access\AuthorizationException
9295
*/
9396
public function update(Request $request, User $user)

app/Http/Controllers/Banking/Account/AccountBankTransactionController.php

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public function __construct(
5252
* Show the form for creating a new resource.
5353
*
5454
* @param Account $account
55+
*
5556
* @return \Illuminate\Http\Response
5657
*/
5758
public function create(Account $account)
@@ -77,6 +78,7 @@ public function create(Account $account)
7778
*
7879
* @param \Illuminate\Http\Request $request
7980
* @param Account $account
81+
*
8082
* @return \Illuminate\Http\Response
8183
*/
8284
public function store(Request $request, Account $account)

app/Http/Controllers/Banking/Bank/BankBankTransactionController.php

+4
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public function __construct(
6262
* Show the form for creating a new resource.
6363
*
6464
* @param \App\Bank $bank
65+
*
6566
* @return \Illuminate\Http\Response
6667
*/
6768
public function create(Bank $bank)
@@ -82,6 +83,7 @@ public function create(Bank $bank)
8283
*
8384
* @param \Illuminate\Http\Request $request
8485
* @param \App\Bank $bank
86+
*
8587
* @return \Illuminate\Http\Response
8688
*/
8789
public function store(Request $request, Bank $bank)
@@ -118,6 +120,7 @@ public function store(Request $request, Bank $bank)
118120
* Show the form for uploading an OFX file.
119121
*
120122
* @param \App\Bank $bank
123+
*
121124
* @return \Illuminate\Http\Response
122125
*/
123126
public function createViaOfxUpload(Bank $bank)
@@ -146,6 +149,7 @@ public function createViaOfxUpload(Bank $bank)
146149
*
147150
* @param \Illuminate\Http\Request $request
148151
* @param \App\Bank $bank
152+
*
149153
* @return \Illuminate\Http\Response
150154
*/
151155
public function storeOfx(Request $request, Bank $bank)

app/Http/Controllers/Banking/BankController.php

+4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public function create()
7676
* Store a newly created resource in storage.
7777
*
7878
* @param \Illuminate\Http\Request $request
79+
*
7980
* @return \Illuminate\Http\Response
8081
*/
8182
public function store(Request $request)
@@ -109,6 +110,7 @@ public function store(Request $request)
109110
* Display the specified resource.
110111
*
111112
* @param \HMS\Entities\Banking\Bank $bank
113+
*
112114
* @return \Illuminate\Http\Response
113115
*/
114116
public function show(Bank $bank)
@@ -124,6 +126,7 @@ public function show(Bank $bank)
124126
* Show the form for editing the specified resource.
125127
*
126128
* @param \HMS\Entities\Banking\Bank $bank
129+
*
127130
* @return \Illuminate\Http\Response
128131
*/
129132
public function edit(Bank $bank)
@@ -137,6 +140,7 @@ public function edit(Bank $bank)
137140
*
138141
* @param \Illuminate\Http\Request $request
139142
* @param \HMS\Entities\Banking\Bank $bank
143+
*
140144
* @return \Illuminate\Http\Response
141145
*/
142146
public function update(Request $request, Bank $bank)

app/Http/Controllers/ContentBlockController.php

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public function index()
4242
* Display the specified resource.
4343
*
4444
* @param \HMS\Entities\ContentBlock $contentBlock
45+
*
4546
* @return \Illuminate\Http\Response
4647
*/
4748
public function show(ContentBlock $contentBlock)
@@ -53,6 +54,7 @@ public function show(ContentBlock $contentBlock)
5354
* Show the form for editing the specified resource.
5455
*
5556
* @param \HMS\Entities\ContentBlock $contentBlock
57+
*
5658
* @return \Illuminate\Http\Response
5759
*/
5860
public function edit(ContentBlock $contentBlock)
@@ -65,6 +67,7 @@ public function edit(ContentBlock $contentBlock)
6567
*
6668
* @param \Illuminate\Http\Request $request
6769
* @param \HMS\Entities\ContentBlock $contentBlock
70+
*
6871
* @return \Illuminate\Http\Response
6972
*/
7073
public function update(Request $request, ContentBlock $contentBlock)

app/Http/Controllers/Tools/ToolController.php

+2
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ public function show(Tool $tool)
178178
* @param string $grantType
179179
*
180180
* @return \Illuminate\Http\Response
181+
*
181182
* @throws \Illuminate\Auth\Access\AuthorizationException
182183
*/
183184
public function showUsersForGrant(Tool $tool, string $grantType)
@@ -287,6 +288,7 @@ public function destroy(Tool $tool)
287288
* @param Tool $tool
288289
*
289290
* @return \Illuminate\Http\Response
291+
*
290292
* @throws \Illuminate\Auth\Access\AuthorizationException
291293
*/
292294
public function grant(Request $request, Tool $tool)

app/Http/Resources/Gatekeeper/RfidTagResource.php

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class RfidTagResource extends JsonResource
1111
* Transform the resource into an array.
1212
*
1313
* @param \Illuminate\Http\Request $request
14+
*
1415
* @return array
1516
*/
1617
public function toArray($request)

app/Listeners/Gatekeeper/NotifyNewBooking.php

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public function __construct(
4545
* Handle the event.
4646
*
4747
* @param NewBooking $event
48+
*
4849
* @return void
4950
*/
5051
public function handle(NewBooking $event)

app/Listeners/Governance/NotifyCancelledProxy.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public function __construct(RoleRepository $roleRepository)
3333
* Handle the event.
3434
*
3535
* @param ProxyCancelled $event
36+
*
3637
* @return void
3738
*/
3839
public function handle(ProxyCancelled $event)

app/Listeners/Governance/NotifyCheckedInProxy.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function __construct()
2222
* Handle the event.
2323
*
2424
* @param ProxyCheckedIn $event
25+
*
2526
* @return void
2627
*/
2728
public function handle(ProxyCheckedIn $event)

app/Listeners/Governance/NotifyNewProxyRegistered.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public function __construct(RoleRepository $roleRepository)
3333
* Handle the event.
3434
*
3535
* @param ProxyRegistered $event
36+
*
3637
* @return void
3738
*/
3839
public function handle(ProxyRegistered $event)

0 commit comments

Comments
 (0)