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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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);

0 commit comments

Comments
 (0)