Skip to content

Commit ca23307

Browse files
committed
refactor: Namespace Correction
1 parent bce4097 commit ca23307

31 files changed

+68
-68
lines changed

WebFiori/Ui/Anchor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
/**
1414
* A class that represents <a> tag.

WebFiori/Ui/Br.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
/**
1414
* A class that represents <br> tag.

WebFiori/Ui/CodeSnippet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
/**
1414
* A class that can be used to display code snippets in good-looking way.

WebFiori/Ui/Exceptions/InvalidNodeNameException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI\Exceptions;
11+
namespace WebFiori\Ui\Exceptions;
1212

1313
use Exception;
1414
/**

WebFiori/Ui/Exceptions/TemplateNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI\Exceptions;
11+
namespace WebFiori\Ui\Exceptions;
1212

1313
use Exception;
1414
/**

WebFiori/Ui/HTMLDoc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
use WebFiori\Collections\LinkedList;
14-
use WebFiori\UI\Exceptions\InvalidNodeNameException;
14+
use WebFiori\Ui\Exceptions\InvalidNodeNameException;
1515
/**
1616
* A class that represents HTML document.
1717
*

WebFiori/Ui/HTMLList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
/**
1414
* A class that represents ordered list or unordered list.

WebFiori/Ui/HTMLNode.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
use Countable;
1414
use Iterator;
1515
use ReturnTypeWillChange;
1616
use WebFiori\Collections\LinkedList;
1717
use WebFiori\Collections\Stack;
18-
use WebFiori\UI\Exceptions\InvalidNodeNameException;
19-
use WebFiori\UI\Exceptions\TemplateNotFoundException;
18+
use WebFiori\Ui\Exceptions\InvalidNodeNameException;
19+
use WebFiori\Ui\Exceptions\TemplateNotFoundException;
2020
/**
2121
* A class that represents HTML element.
2222
*

WebFiori/Ui/HTMLTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
use InvalidArgumentException;
1414
/**

WebFiori/Ui/HeadNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://github.com/WebFiori/.github/blob/main/LICENSE
99
*
1010
*/
11-
namespace WebFiori\UI;
11+
namespace WebFiori\Ui;
1212

1313
use WebFiori\Collections\LinkedList;
1414
/**

0 commit comments

Comments
 (0)