File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,15 +57,12 @@ Once you have the name of your application which we shall refer to as `YourApp`,
5757>
5858
59592 . Next, rename the following two directories from ` Application ` to ` YourApp ` :
60- * Rename ` /lib/Application/ ` to ` /lib/YourApp/ `
61- * Rename ` /tests/Application/ ` to ` /tests/YourApp/ `
62-
60+ * Rename `/lib/Application/` to `/lib/YourApp/`
61+ * Rename `/tests/Application/` to `/tests/YourApp/`
63623 . Finally update the ` namespace ` inside the following php files:
64- * Inside ` /lib/YourApp/Example.php ` update ` namespace Application; ` to ` namespace YourApp; `
65- * Inside ` /tests/YourApp/ExampleTest.php ` update ` $this->obj = new Application\Example; ` to ` $this->obj = new YourApp\Example; `
66-
63+ * Inside `/lib/YourApp/Example.php` update `namespace Application;` to `namespace YourApp;`
64+ * Inside `/tests/YourApp/ExampleTest.php` update `$this->obj = new Application\Example;` to `$this->obj = new YourApp\Example;`
67654 . Run ` php composer.phar update ` again to update the sources
68-
69665 . Run ` ./vendor/bin/phpunit ` again to make sure all tests are passing again
7067
7168## Credits ##
You can’t perform that action at this time.
0 commit comments