Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89dd146

Browse files
committed
Merge branch '3.3' into 3.4
2 parents 4ffec2a + c3cb28b commit 89dd146

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ It comes pre-configured with the following bundles:
5151
capabilities
5252

5353
* [**WebServerBundle**][14] (in dev env) - Adds commands for running applications
54-
using the PHP built-in web servep
54+
using the PHP built-in web server
5555

5656
* **DebugBundle** (in dev/test env) - Adds Debug and VarDumper component
5757
integration

app/config/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ doctrine:
5050
charset: UTF8
5151
# if using pdo_sqlite as your database driver:
5252
# 1. add the path in parameters.yml
53-
# e.g. database_path: "%kernel.project_dir%/var/data/data.sqlite"
53+
# e.g. database_path: '%kernel.project_dir%/var/data/data.sqlite'
5454
# 2. Uncomment database_path in parameters.yml.dist
5555
# 3. Uncomment next line:
5656
#path: '%database_path%'

src/AppBundle/Controller/DefaultController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
namespace AppBundle\Controller;
44

55
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6-
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
6+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
77
use Symfony\Component\HttpFoundation\Request;
88

9-
class DefaultController extends AbstractController
9+
class DefaultController extends Controller
1010
{
1111
/**
1212
* @Route("/", name="homepage")

0 commit comments

Comments
 (0)