Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0fec459

Browse filesBrowse files
committed
[Lock][WIP] Fix license headers
1 parent 03acce4 commit 0fec459
Copy full SHA for 0fec459

File tree

Expand file treeCollapse file tree

2 files changed

+18
-14
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+18
-14
lines changed

‎src/Symfony/Component/Lock/Bridge/DynamoDb/Store/DynamoDbStore.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Lock/Bridge/DynamoDb/Store/DynamoDbStore.php
+9-13Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
<?php
2-
declare(strict_types=1);
2+
3+
/**
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
311

412
namespace Symfony\Component\Lock\Bridge\DynamoDb\Store;
513

614
use AsyncAws\DynamoDb\DynamoDbClient;
715
use AsyncAws\DynamoDb\Exception\ConditionalCheckFailedException;
8-
use AsyncAws\DynamoDb\Input\CreateTableInput;
9-
use AsyncAws\DynamoDb\Input\DeleteItemInput;
1016
use AsyncAws\DynamoDb\Input\DescribeTableInput;
11-
use AsyncAws\DynamoDb\Input\GetItemInput;
12-
use AsyncAws\DynamoDb\Input\PutItemInput;
1317
use AsyncAws\DynamoDb\ValueObject\AttributeDefinition;
1418
use AsyncAws\DynamoDb\ValueObject\AttributeValue;
1519
use AsyncAws\DynamoDb\ValueObject\KeySchemaElement;
@@ -22,14 +26,6 @@
2226
use Symfony\Component\Lock\PersistingStoreInterface;
2327
use Symfony\Component\Lock\Store\ExpiringStoreTrait;
2428

25-
/**
26-
* This file is part of the Symfony package.
27-
*
28-
* (c) Fabien Potencier <fabien@symfony.com>
29-
*
30-
* For the full copyright and license information, please view the LICENSE
31-
* file that was distributed with this source code.
32-
*/
3329
class DynamoDbStore implements PersistingStoreInterface
3430
{
3531
use ExpiringStoreTrait;

‎src/Symfony/Component/Lock/Bridge/DynamoDb/Tests/Store/DynamoDbStoreTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Lock/Bridge/DynamoDb/Tests/Store/DynamoDbStoreTest.php
+9-1Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
<?php
2-
declare(strict_types=1);
2+
3+
/**
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
311

412
namespace Symfony\Component\Lock\Bridge\DynamoDb\Tests\Store;
513

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.