Skip to content

Commit b54e637

Browse files
author
Brian Schäffner
committed
Update src Namespace
1 parent 0f7facf commit b54e637

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/Badword/AbstractBadwords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Badword;
3+
namespace Badwords;
44

55
use Badwords\Dictionary\PhpArray;
66
use Badwords\Filter\Config;

src/Badword/BadWordsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Badword;
3+
namespace Badwords;
44

55
use Badwords\Filter\Config;
66

src/Badword/Badwords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Badword;
3+
namespace Badwords;
44

55
/**
66
* Class Badwords

src/Badword/Cache.php

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 source code.
1010
*/
1111

12-
namespace Badword;
12+
namespace Badwords;
1313

1414
/**
1515
* Defines the interface for reading and storing data from a cache.

src/Badword/Dictionary.php

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 source code.
1010
*/
1111

12-
namespace Badword;
12+
namespace Badwords;
1313

1414
/**
1515
* Defines the interface for a dictionary, a.k.a. list, of words.

src/Badword/Filter.php

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 source code.
1010
*/
1111

12-
namespace Badword;
12+
namespace Badwords;
1313

1414
use Badwords\Cache;
1515
use Badwords\Cache\None;

src/Badword/Word.php

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 source code.
1010
*/
1111

12-
namespace Badword;
12+
namespace Badwords;
1313

1414
/**
1515
* Represents a single word and its settings.

0 commit comments

Comments
 (0)