Skip to content

Commit 22ea78d

Browse files
author
jasdeepkhalsa
committed
Updated readme.md
1 parent 12b1231 commit 22ea78d

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,12 @@ Once you have the name of your application which we shall refer to as `YourApp`,
5757
>
5858
5959
2. 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/`
6362
3. 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;`
6765
4. Run `php composer.phar update` again to update the sources
68-
6966
5. Run `./vendor/bin/phpunit` again to make sure all tests are passing again
7067

7168
## Credits ##

0 commit comments

Comments
 (0)