Skip to content

Commit

Permalink
change folder structure an namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
MDevster committed Dec 5, 2017
1 parent 0361e92 commit 9b08a0b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
},
"autoload": {
"psr-4": {
"Pdir\\Contao\\ThemeHelperBundle\\": "src/"
"Pdir\\ThemeHelperBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Pdir\\Contao\\ThemeHelperBundle\\ContaoManager\\Plugin"
"contao-manager-plugin": "Pdir\\ThemeHelperBundle\\ContaoManager\\Plugin"
}
}
2 changes: 1 addition & 1 deletion src/ContaoManager/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pdir\Contao\ThemeHelperBundle\ContaoManager;
namespace Pdir\ThemeHelperBundle\ContaoManager;

use Contao\CoreBundle\ContaoCoreBundle;
use Contao\ManagerPlugin\Bundle\BundlePluginInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/ThemeHelperExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pdir\Contao\ThemeHelperBundle\DependencyInjection;
namespace Pdir\ThemeHelperBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
Expand Down
2 changes: 1 addition & 1 deletion src/EventListener/InsertTagsListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Pdir\Contao\ThemeHelperBundle\EventListener;
namespace Pdir\ThemeHelperBundle\EventListener;

use Contao\CoreBundle\Framework\ContaoFrameworkInterface;
use Contao\Events;
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config/listener.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
services:
contao_calendar.listener.insert_tags:
class: Pdir\Contao\ThemeHelperBundle\EventListener\InsertTagsListener
class: Pdir\ThemeHelperBundle\EventListener\InsertTagsListener
arguments:
- "@contao.framework"
2 changes: 1 addition & 1 deletion src/ThemeHelperBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
declare(strict_types = 1);

namespace Pdir\Contao\ThemeHelperBundle;
namespace Pdir\ThemeHelperBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
Expand Down

0 comments on commit 9b08a0b

Please sign in to comment.