Skip to content

Commit b95a977

Browse files
committed
Licence: Update year
1 parent d5a399f commit b95a977

14 files changed

+15
-16
lines changed

.phpstorm.meta.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?php
22
/**
33
* The MIT License (MIT)
4-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
4+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
55
*/
66

77
namespace PHPSTORM_META {
8-
98
expectedArguments(
109
\Redbitcz\DebugMode\Detector::__construct(),
1110
0,
@@ -40,7 +39,7 @@
4039
);
4140

4241
expectedArguments(
43-
\Redbitcz\DebugMode\Plugin\SignedUrl::__construct(),
42+
\Redbitcz\DebugMode\Plugin\SignedUrl::create(),
4443
1,
4544
'ES384',
4645
'ES256',

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
3+
Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/Detector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* The MIT License (MIT)
4-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
4+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
55
*/
66

77
declare(strict_types=1);

src/Enabler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* The MIT License (MIT)
4-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
4+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
55
*/
66

77
declare(strict_types=1);

src/InconsistentEnablerModeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* The MIT License (MIT)
4-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
4+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
55
*/
66

77
declare(strict_types=1);

src/Plugin/JWT/JWTFirebaseV5.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* The MIT License (MIT)
5-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
5+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
66
*
77
* @noinspection PhpUndefinedClassInspection OpenSSL only optional dependency
88
*/

src/Plugin/JWT/JWTFirebaseV6.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* The MIT License (MIT)
5-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
5+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
66
*
77
* @noinspection PhpUndefinedClassInspection Library support JWT 5.0
88
*/

src/Plugin/JWT/JWTImpl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* The MIT License (MIT)
5-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
5+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
66
*/
77

88
declare(strict_types=1);

src/Plugin/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* The MIT License (MIT)
4-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
4+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
55
*/
66

77
declare(strict_types=1);

src/Plugin/SignedUrl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* The MIT License (MIT)
5-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
5+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
66
*
77
* @noinspection PhpComposerExtensionStubsInspection OpenSSL only optional dependency
88
* @noinspection PhpElementIsNotAvailableInCurrentPhpVersionInspection PHP 7 compatibility

src/Plugin/SignedUrlVerificationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* The MIT License (MIT)
4-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
4+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
55
*/
66

77
declare(strict_types=1);

tests/DetectorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* The MIT License (MIT)
5-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
5+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
66
*
77
* @noinspection PhpUnused
88
* @testCase

tests/Plugin/SignUrlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* The MIT License (MIT)
5-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
5+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
66
*
77
* @noinspection PhpUnused
88
* @testCase

tests/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* The MIT License (MIT)
4-
* Copyright (c) 2022 Redbit s.r.o., Jakub Bouček
4+
* Copyright (c) 2023 Redbit s.r.o., Jakub Bouček
55
*/
66

77
declare(strict_types=1);

0 commit comments

Comments
 (0)