File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,5 @@ php-cs-fixer-v2.phar
1010.idea /*
1111/release-please-config.json
1212* .Identifier
13+ /tests /.phpunit.cache /code-coverage
14+ /tests /.phpunit.cache
Original file line number Diff line number Diff line change 1111namespace WebFiori \UI ;
1212
1313use WebFiori \Collections \LinkedList ;
14- use WebFiori \UI \exceptions \InvalidNodeNameException ;
14+ use WebFiori \UI \Exceptions \InvalidNodeNameException ;
1515/**
1616 * A class that represents HTML document.
1717 *
Original file line number Diff line number Diff line change 1010 */
1111namespace WebFiori \UI ;
1212
13- use WebFiori \UI \exceptions \InvalidNodeNameException ;
13+ use WebFiori \UI \Exceptions \InvalidNodeNameException ;
1414
1515/**
1616 * A class that represents List Item node.
Original file line number Diff line number Diff line change 1212
1313use InvalidArgumentException ;
1414use WebFiori \Collections \Queue ;
15- use WebFiori \UI \exceptions \InvalidNodeNameException ;
16- use WebFiori \UI \exceptions \TemplateNotFoundException ;
15+ use WebFiori \UI \Exceptions \InvalidNodeNameException ;
16+ use WebFiori \UI \Exceptions \TemplateNotFoundException ;
1717
1818/**
1919 * A class which is used to compile and load php/html templates to objects
Original file line number Diff line number Diff line change 66use WebFiori \UI \HTMLDoc ;
77use WebFiori \UI \HTMLNode ;
88use WebFiori \UI \TemplateCompiler ;
9+ use WebFiori \UI \Exceptions \TemplateNotFoundException ;
910/**
1011 * Description of TestLoadTemplate
1112 *
@@ -205,7 +206,7 @@ public function testHeadTemplate01() {
205206 * @test
206207 */
207208 public function test11 () {
208- $ this ->expectException (\ webfiori \ ui \ exceptions \ TemplateNotFoundException::class);
209+ $ this ->expectException (TemplateNotFoundException::class);
209210 $ compiler = new TemplateCompiler (self ::TEST_TEMPLATES_PATH .'not-exist.php ' );
210211 }
211212 /**
You can’t perform that action at this time.
0 commit comments