Skip to content

Commit 8ad0655

Browse files
committed
build: optimization.
1 parent 90b3633 commit 8ad0655

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<filter>
2323
<whitelist processUncoveredFilesFromWhitelist="true">
2424
<directory suffix=".php">src/GoogleAuthenticator/</directory>
25-
<directory suffix=".php">src/Utilities/</directory>
25+
<directory suffix=".php">src/Utility/</directory>
2626
<directory suffix=".php">src/RFC4226/</directory>
2727
<directory suffix=".php">src/RFC6238/</directory>
2828
<file>src/OTP.php</file>
@@ -31,7 +31,7 @@
3131
<testsuites>
3232
<testsuite name="Unit">
3333
<directory suffix="Test.php">tests/Unit/GoogleAuthenticator/</directory>
34-
<directory suffix="Test.php">tests/Unit/Utilities/</directory>
34+
<directory suffix="Test.php">tests/Unit/Utility/</directory>
3535
<directory suffix="Test.php">tests/Unit/RFC4226/</directory>
3636
<directory suffix="Test.php">tests/Unit/RFC6238/</directory>
3737
<file>tests/Unit/OTPTest.php</file>

src/OTP.php

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

1212
namespace LordDashMe\TwoFactorAuth;
1313

14-
use LordDashMe\TwoFactorAuth\Utilities\Base32;
14+
use LordDashMe\TwoFactorAuth\Utility\Base32;
1515

1616
/**
1717
* One-Time Password Algorithm.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this surce code.
1010
*/
1111

12-
namespace LordDashMe\TwoFactorAuth\Utilities;
12+
namespace LordDashMe\TwoFactorAuth\Utility;
1313

1414
/**
1515
* Base32 Utility.

tests/Integration/GoogleAuthenticatorTOTPTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use PHPUnit\Framework\TestCase;
55

66
use LordDashMe\TwoFactorAuth\RFC6238\TOTP;
7-
use LordDashMe\TwoFactorAuth\Utilities\Base32;
7+
use LordDashMe\TwoFactorAuth\Utility\Base32;
88
use LordDashMe\TwoFactorAuth\GoogleAuthenticator\BarcodeURL;
99
use LordDashMe\TwoFactorAuth\GoogleAuthenticator\TOTPFormat;
1010

tests/Unit/GoogleAuthenticator/BarcodeURLTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use Mockery as Mockery;
44
use PHPUnit\Framework\TestCase;
55

6-
use LordDashMe\TwoFactorAuth\Utilities\Base32;
6+
use LordDashMe\TwoFactorAuth\Utility\Base32;
77
use LordDashMe\TwoFactorAuth\GoogleAuthenticator\BarcodeURL;
88
use LordDashMe\TwoFactorAuth\GoogleAuthenticator\HOTPFormat;
99
use LordDashMe\TwoFactorAuth\GoogleAuthenticator\TOTPFormat;

tests/Unit/OTPTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use PHPUnit\Framework\TestCase;
55

66
use LordDashMe\TwoFactorAuth\OTP;
7-
use LordDashMe\TwoFactorAuth\Utilities\Base32;
7+
use LordDashMe\TwoFactorAuth\Utility\Base32;
88

99
class OTPTest extends TestCase
1010
{

tests/Unit/RFC4226/HOTPTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use PHPUnit\Framework\TestCase;
66

77
use LordDashMe\TwoFactorAuth\RFC4226\HOTP;
8-
use LordDashMe\TwoFactorAuth\Utilities\Base32;
8+
use LordDashMe\TwoFactorAuth\Utility\Base32;
99

1010
class HOTPTest extends TestCase
1111
{

tests/Unit/RFC6238/TOTPTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use PHPUnit\Framework\TestCase;
55

66
use LordDashMe\TwoFactorAuth\RFC6238\TOTP;
7-
use LordDashMe\TwoFactorAuth\Utilities\Base32;
7+
use LordDashMe\TwoFactorAuth\Utility\Base32;
88

99
class TOTPTest extends TestCase
1010
{

tests/Unit/Utilities/Base32Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use Mockery as Mockery;
44
use PHPUnit\Framework\TestCase;
55

6-
use LordDashMe\TwoFactorAuth\Utilities\Base32;
6+
use LordDashMe\TwoFactorAuth\Utility\Base32;
77

88
class Base32Test extends TestCase
99
{

0 commit comments

Comments
 (0)