added code formatting

This commit is contained in:
Patrick 2014-09-17 22:07:26 +02:00 committed by lubiana
parent 562ddf720f
commit 7687430549
6 changed files with 15 additions and 15 deletions

View file

@ -16,7 +16,7 @@ So instead of doing that, create a folder in your project folder called `public`
Inside the `public` folder you can now create your `index.php`. Remember that you don't want to expose anything here, so put just the following code in there:
```
```php
<?php
require '../src/Bootstrap.php';
@ -28,7 +28,7 @@ The rest of the public folder is reserved for your public asset files (like Java
Now navigate inside your `src` folder and create a new `Bootstrap.php` file with the following content:
```
```php
<?php
echo 'Hello World!';