File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -48,15 +48,13 @@ public function testAutoload()
48
48
$ this ->assertCount (
49
49
$ declaredCount ,
50
50
get_declared_classes (),
51
- 'PhpOffice \\PhpWord \\Autoloader::autoload() is trying to load '
52
- . 'classes outside of the PhpOffice \\PhpWord namespace '
51
+ 'PhpOffice \\PhpWord \\Autoloader::autoload() is trying to load classes outside of the PhpOffice \\PhpWord namespace '
53
52
);
54
53
// TODO change this class to the main PhpWord class when it is namespaced
55
54
Autoloader::autoload ('PhpOffice \\PhpWord \\Exception \\InvalidStyleException ' );
56
55
$ this ->assertTrue (
57
56
in_array ('PhpOffice \\PhpWord \\Exception \\InvalidStyleException ' , get_declared_classes ()),
58
- 'PhpOffice \\PhpWord \\Autoloader::autoload() failed to autoload the '
59
- . 'PhpOffice \\PhpWord \\Exception \\InvalidStyleException class '
57
+ 'PhpOffice \\PhpWord \\Autoloader::autoload() failed to autoload the PhpOffice \\PhpWord \\Exception \\InvalidStyleException class '
60
58
);
61
59
}
62
60
}
You can’t perform that action at this time.
0 commit comments