Skip to content

Commit

Permalink
Added copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Helldar committed Jul 31, 2021
1 parent 3d76542 commit 0328adf
Show file tree
Hide file tree
Showing 29 changed files with 436 additions and 0 deletions.
15 changes: 15 additions & 0 deletions phpunit.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
Expand Down
16 changes: 16 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
~ This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code.
~
~ @author Andrey Helldar <[email protected]>
~
~ @copyright 2021 Andrey Helldar
~
~ @license MIT
~
~ @see https://github.com/andrey-helldar/cashier-tinkoff-qr
-->

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
Expand Down
15 changes: 15 additions & 0 deletions src/Driver.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

namespace Helldar\CashierDriver\Tinkoff\QrCode;

use Helldar\Cashier\Services\Driver as BaseDriver;
Expand Down
15 changes: 15 additions & 0 deletions src/Helpers/Exception.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

namespace Helldar\CashierDriver\Tinkoff\QrCode\Helpers;

use Helldar\Cashier\Exceptions\Http\BankInternalErrorException;
Expand Down
15 changes: 15 additions & 0 deletions src/Helpers/Statuses.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

namespace Helldar\CashierDriver\Tinkoff\QrCode\Helpers;

use Helldar\Cashier\Services\Statuses as BaseStatus;
Expand Down
15 changes: 15 additions & 0 deletions src/Requests/BaseRequest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Requests;
Expand Down
15 changes: 15 additions & 0 deletions src/Requests/Cancel.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Requests;
Expand Down
15 changes: 15 additions & 0 deletions src/Requests/GetQR.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Requests;
Expand Down
15 changes: 15 additions & 0 deletions src/Requests/GetState.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Requests;
Expand Down
15 changes: 15 additions & 0 deletions src/Requests/Init.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Requests;
Expand Down
15 changes: 15 additions & 0 deletions src/Resources/Details.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Resources;
Expand Down
15 changes: 15 additions & 0 deletions src/Responses/Init.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Responses;
Expand Down
15 changes: 15 additions & 0 deletions src/Responses/QrCode.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Responses;
Expand Down
15 changes: 15 additions & 0 deletions src/Responses/Refund.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Responses;
Expand Down
15 changes: 15 additions & 0 deletions src/Responses/State.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Helldar\CashierDriver\Tinkoff\QrCode\Responses;
Expand Down
15 changes: 15 additions & 0 deletions tests/Fixtures/Models/Payment.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

declare(strict_types=1);

namespace Tests\Fixtures\Models;
Expand Down
15 changes: 15 additions & 0 deletions tests/Fixtures/Resources/Model.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

namespace Tests\Fixtures\Resources;

use Helldar\Cashier\Resources\Model as BaseModel;
Expand Down
15 changes: 15 additions & 0 deletions tests/Helpers/ExceptionTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

namespace Tests\Helpers;

use Helldar\Cashier\Exceptions\Http\BadRequestClientException;
Expand Down
15 changes: 15 additions & 0 deletions tests/Helpers/StatusesTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<?php

/*
* This file is part of the "andrey-helldar/cashier-tinkoff-qr" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Andrey Helldar <[email protected]>
*
* @copyright 2021 Andrey Helldar
*
* @license MIT
*
* @see https://github.com/andrey-helldar/cashier-tinkoff-qr
*/

namespace Tests\Helpers;

use Helldar\CashierDriver\Tinkoff\QrCode\Helpers\Statuses;
Expand Down
Loading

0 comments on commit 0328adf

Please sign in to comment.