-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added editorconfig file * Edited readme
- Loading branch information
mmoreram
committed
Dec 31, 2013
1 parent
8b2ebf5
commit 1afb5ee
Showing
17 changed files
with
97 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
; top-most EditorConfig file | ||
root = true | ||
|
||
; Unix-style newlines | ||
[*] | ||
end_of_line = LF | ||
|
||
[*.php] | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Annotation\Abstracts; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Annotation; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Annotation; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Annotation; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\CompilerPass; | ||
|
@@ -22,7 +25,7 @@ class ResolverCompilerPass implements CompilerPassInterface | |
|
||
/** | ||
* Every service tagged as controllerextra.annotation will be processed | ||
* | ||
* | ||
* @param ContainerBuilder $container Container | ||
*/ | ||
public function process(ContainerBuilder $container) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle; | ||
|
@@ -44,7 +47,7 @@ public function boot() | |
|
||
/** | ||
* Builds bundle | ||
* | ||
* | ||
* @param ContainerBuilder $container Container | ||
*/ | ||
public function build(ContainerBuilder $container) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\DependencyInjection; | ||
|
@@ -28,6 +31,10 @@ public function getConfigTreeBuilder() | |
|
||
$rootNode | ||
->children() | ||
|
||
/** | ||
* Form config definition | ||
*/ | ||
->arrayNode('form') | ||
->addDefaultsIfNotSet() | ||
->children() | ||
|
@@ -36,6 +43,10 @@ public function getConfigTreeBuilder() | |
->end() | ||
->end() | ||
->end() | ||
|
||
/** | ||
* Flush config definition | ||
*/ | ||
->arrayNode('flush') | ||
->addDefaultsIfNotSet() | ||
->children() | ||
|
@@ -47,6 +58,10 @@ public function getConfigTreeBuilder() | |
->end() | ||
->end() | ||
->end() | ||
|
||
/** | ||
* Log config definition | ||
*/ | ||
->arrayNode('log') | ||
->addDefaultsIfNotSet() | ||
->children() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\DependencyInjection; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\EventListener; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Resolver; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Resolver; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Resolver\Interfaces; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Resolver; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Tests\Resolver; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Controller Extra Bundle | ||
* This file is part of the Controller Extra Bundle | ||
* | ||
* @author Marc Morera <[email protected]> | ||
* @since 2013 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mmoreram\ControllerExtraBundle\Tests\Resolver; | ||
|