-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed PHPDoc author * removed useless comments
- Loading branch information
1 parent
9634acd
commit 241c44a
Showing
31 changed files
with
1 addition
and
81 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
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
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 |
---|---|---|
|
@@ -22,8 +22,6 @@ | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | ||
|
||
/** | ||
* Class BlockController. | ||
* | ||
* @author Vincent Composieux <[email protected]> | ||
*/ | ||
class BlockController | ||
|
@@ -39,8 +37,6 @@ class BlockController | |
protected $formFactory; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param BlockManagerInterface $blockManager | ||
* @param FormFactoryInterface $formFactory | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -30,9 +30,6 @@ | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | ||
|
||
/** | ||
* Class PageController. | ||
* | ||
* | ||
* @author Hugo Briand <[email protected]> | ||
*/ | ||
class PageController | ||
|
@@ -63,8 +60,6 @@ class PageController | |
protected $backend; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param SiteManagerInterface $siteManager | ||
* @param PageManagerInterface $pageManager | ||
* @param BlockManagerInterface $blockManager | ||
|
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 |
---|---|---|
|
@@ -25,8 +25,6 @@ | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | ||
|
||
/** | ||
* Class SiteController. | ||
* | ||
* @author Raphaël Benitte <[email protected]> | ||
*/ | ||
class SiteController | ||
|
@@ -42,8 +40,6 @@ class SiteController | |
protected $formFactory; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param SiteManagerInterface $siteManager | ||
* @param FormFactoryInterface $formFactory | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -21,8 +21,6 @@ | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | ||
|
||
/** | ||
* Class SnapshotController. | ||
* | ||
* @author Benoit de Jacobet <[email protected]> | ||
*/ | ||
class SnapshotController | ||
|
@@ -33,8 +31,6 @@ class SnapshotController | |
protected $snapshotManager; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param SnapshotManagerInterface $snapshotManager | ||
*/ | ||
public function __construct(SnapshotManagerInterface $snapshotManager) | ||
|
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 |
---|---|---|
|
@@ -21,9 +21,7 @@ | |
use Symfony\Component\HttpKernel\DependencyInjection\Extension; | ||
|
||
/** | ||
* PageExtension. | ||
* | ||
* @author Thomas Rabaix <[email protected]> | ||
* @author Thomas Rabaix <[email protected]> | ||
*/ | ||
class SonataPageExtension extends Extension | ||
{ | ||
|
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
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
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
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
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
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 |
---|---|---|
|
@@ -14,8 +14,6 @@ | |
use Sonata\PageBundle\Block\BlockContextManager; | ||
|
||
/** | ||
* Class BlockContextManagerTest. | ||
* | ||
* @author Sullivan Senechal <[email protected]> | ||
*/ | ||
class BlockContextManagerTest extends \PHPUnit_Framework_TestCase | ||
|
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 |
---|---|---|
|
@@ -14,8 +14,6 @@ | |
use Sonata\PageBundle\Command\BaseCommand; | ||
|
||
/** | ||
* Class BaseCommandTest. | ||
* | ||
* @author Vincent Composieux <[email protected]> | ||
*/ | ||
class BaseCommandTest extends \PHPUnit_Framework_TestCase | ||
|
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 |
---|---|---|
|
@@ -16,9 +16,6 @@ | |
use Symfony\Component\HttpFoundation\Response; | ||
|
||
/** | ||
* Class BlockControllerTest. | ||
* | ||
* | ||
* @author Vincent Composieux <[email protected]> | ||
*/ | ||
class AjaxControllerTest extends \PHPUnit_Framework_TestCase | ||
|
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 |
---|---|---|
|
@@ -15,9 +15,6 @@ | |
use Symfony\Component\HttpFoundation\Request; | ||
|
||
/** | ||
* Class BlockControllerTest. | ||
* | ||
* | ||
* @author Vincent Composieux <[email protected]> | ||
*/ | ||
class BlockControllerTest extends \PHPUnit_Framework_TestCase | ||
|
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 |
---|---|---|
|
@@ -15,9 +15,6 @@ | |
use Symfony\Component\HttpFoundation\Request; | ||
|
||
/** | ||
* Class PageControllerTest. | ||
* | ||
* | ||
* @author Hugo Briand <[email protected]> | ||
*/ | ||
class PageControllerTest extends \PHPUnit_Framework_TestCase | ||
|
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 |
---|---|---|
|
@@ -15,9 +15,6 @@ | |
use Symfony\Component\HttpFoundation\Request; | ||
|
||
/** | ||
* Class SiteControllerTest. | ||
* | ||
* | ||
* @author Benoit de Jacobet <[email protected]> | ||
*/ | ||
class SiteControllerTest extends \PHPUnit_Framework_TestCase | ||
|
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 |
---|---|---|
|
@@ -14,9 +14,6 @@ | |
use Sonata\PageBundle\Controller\Api\SnapshotController; | ||
|
||
/** | ||
* Class SnapshotControllerTest. | ||
* | ||
* | ||
* @author Benoit de Jacobet <[email protected]> | ||
*/ | ||
class SnapshotControllerTest extends \PHPUnit_Framework_TestCase | ||
|
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
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
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