Skip to content

Commit e6e39a2

Browse files
committed
dockblockr fixes
1 parent 815a020 commit e6e39a2

File tree

45 files changed

+348
-4
lines changed

Some content is hidden

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

45 files changed

+348
-4
lines changed

app/base/abstracts/OAuth2/AuthorizationCodeOAuth2Client.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
<?php
22

3+
/**
4+
* SiteBase
5+
* PHP Version 8.3
6+
*
7+
* @category CMS / Framework
8+
* @package Degami\Sitebase
9+
* @author Mirko De Grandis <degami@github.com>
10+
* @license MIT https://opensource.org/licenses/mit-license.php
11+
* @link https://github.com/degami/sitebase
12+
*/
13+
314
namespace App\Base\Abstracts\OAuth2;
415

516
use Psr\Container\ContainerInterface;
617
use App\Base\Models\OAuth2AccessToken;
718
use Degami\Basics\Exceptions\BasicException;
819
use GuzzleHttp\Exception\GuzzleException;
920

21+
/**
22+
* Authorization Code OAuth2 Client
23+
*/
1024
abstract class AuthorizationCodeOAuth2Client extends AbstractOAuth2ApiClient
1125
{
1226
public function __construct(

app/base/abstracts/OAuth2/ClientCredentialsOAuth2Client.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
11
<?php
22

3+
/**
4+
* SiteBase
5+
* PHP Version 8.3
6+
*
7+
* @category CMS / Framework
8+
* @package Degami\Sitebase
9+
* @author Mirko De Grandis <degami@github.com>
10+
* @license MIT https://opensource.org/licenses/mit-license.php
11+
* @link https://github.com/degami/sitebase
12+
*/
13+
314
namespace App\Base\Abstracts\OAuth2;
415

516
use App\Base\Models\OAuth2AccessToken;
617
use Degami\Basics\Exceptions\BasicException;
718
use GuzzleHttp\Exception\GuzzleException;
819

20+
/**
21+
* Client Credentials OAuth2 Client
22+
*/
923
abstract class ClientCredentialsOAuth2Client extends AbstractOAuth2ApiClient
1024
{
1125
/**

app/base/migrations/CreateAddressTableMigration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
use Degami\SqlSchema\Table;
1818
use Degami\SqlSchema\Index;
1919

20+
/**
21+
* "address" table migration
22+
*/
2023
class CreateAddressTableMigration extends DBMigration
2124
{
2225
protected string $tableName = 'address';

app/base/migrations/CreateCalendarSlotTableMigration.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
<?php
22

3+
/**
4+
* SiteBase
5+
* PHP Version 8.3
6+
*
7+
* @category CMS / Framework
8+
* @package Degami\Sitebase
9+
* @author Mirko De Grandis <degami@github.com>
10+
* @license MIT https://opensource.org/licenses/mit-license.php
11+
* @link https://github.com/degami/sitebase
12+
*/
13+
314
namespace App\Base\Migrations;
415

516
use App\Base\Abstracts\Migrations\DBMigration;
617
use Psr\Container\ContainerInterface;
718
use Degami\SqlSchema\Index;
819
use Degami\SqlSchema\Table;
920

21+
/**
22+
* "calendar_slot" table migration
23+
*/
1024
class CreateCalendarSlotTableMigration extends DBMigration
1125
{
1226
protected string $tableName = 'calendar_slot';

app/base/migrations/CreateCalendarTableMigration.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
<?php
22

3+
/**
4+
* SiteBase
5+
* PHP Version 8.3
6+
*
7+
* @category CMS / Framework
8+
* @package Degami\Sitebase
9+
* @author Mirko De Grandis <degami@github.com>
10+
* @license MIT https://opensource.org/licenses/mit-license.php
11+
* @link https://github.com/degami/sitebase
12+
*/
13+
314
namespace App\Base\Migrations;
415

516
use App\Base\Abstracts\Migrations\DBMigration;
617
use Psr\Container\ContainerInterface;
718
use Degami\SqlSchema\Index;
819
use Degami\SqlSchema\Table;
920

21+
/**
22+
* "calendar" table migration
23+
*/
1024
class CreateCalendarTableMigration extends DBMigration
1125
{
1226
protected string $tableName = 'calendar';

app/base/migrations/CreateCartDiscountTableMigration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
use Degami\SqlSchema\Table;
1919
use Degami\SqlSchema\Index;
2020

21+
/**
22+
* "cart_discount" table migration
23+
*/
2124
class CreateCartDiscountTableMigration extends DBMigration
2225
{
2326
protected string $tableName = 'cart_discount';

app/base/migrations/CreateCartItemTableMigration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
use Degami\SqlSchema\Table;
1818
use Degami\SqlSchema\Index;
1919

20+
/**
21+
* "cart_item" table migration
22+
*/
2023
class CreateCartItemTableMigration extends DBMigration
2124
{
2225
protected string $tableName = 'cart_item';

app/base/migrations/CreateCartTableMigration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
use Degami\SqlSchema\Table;
1818
use Degami\SqlSchema\Index;
1919

20+
/**
21+
* "cart" table migration
22+
*/
2023
class CreateCartTableMigration extends DBMigration
2124
{
2225
protected string $tableName = 'cart';

app/base/migrations/CreateCountryTableMigration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
use Degami\SqlSchema\Table;
1818
use Degami\SqlSchema\Index;
1919

20+
/**
21+
* "country" table migration
22+
*/
2023
class CreateCountryTableMigration extends DBMigration
2124
{
2225
protected string $tableName = 'country';

app/base/migrations/CreateDiscountTableMigration.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
use Degami\SqlSchema\Table;
1818
use Degami\SqlSchema\Index;
1919

20+
/**
21+
* "discount" table migration
22+
*/
2023
class CreateDiscountTableMigration extends DBMigration
2124
{
2225
protected string $tableName = 'discount';

0 commit comments

Comments
 (0)