Private
Public Access
1
0

initial commit && create project in symfony3

This commit is contained in:
2016-09-22 13:56:57 +02:00
commit f4d2aad81c
867 changed files with 304033 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace Mine\SeekerBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function indexAction()
{
return $this->render('MineSeekerBundle:Default:index.html.twig');
}
}

View File

@@ -0,0 +1,9 @@
<?php
namespace Mine\SeekerBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class MineSeekerBundle extends Bundle
{
}

View File

@@ -0,0 +1,3 @@
MineSeekerBundle_homepage:
path: /
defaults: { _controller: MineSeekerBundle:Default:index }

View File

@@ -0,0 +1,4 @@
services:
# mine_seeker.example:
# class: Mine\SeekerBundle\Example
# arguments: ["@service_id", "plain_value", %parameter%]

View File

@@ -0,0 +1 @@
Hello World!