Skip to content

Commit 35d796a

Browse files
author
Christian Hessel
committed
Revert "updated namespace"
This reverts commit e131c10.
1 parent d4f467b commit 35d796a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+100
-98
lines changed

Command/BaseBootstrapSymlinkCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\Command;
10+
namespace opwoco\Bundle\BootstrapBundle\Command;
1111

1212
use Mopa\Bridge\Composer\Adapter\ComposerAdapter;
1313
use Mopa\Bridge\Composer\Util\ComposerPathFinder;

Command/BootstrapSymlinkLessCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\Command;
10+
namespace opwoco\Bundle\BootstrapBundle\Command;
1111

1212
/**
1313
* Command to create Bootstrap symlink to OpwocoBootstrapBundle.

Command/BootstrapSymlinkSassCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\Command;
10+
namespace opwoco\Bundle\BootstrapBundle\Command;
1111

1212
/**
1313
* Command to create Bootstrap (SASS) symlink to OpwocoBootstrapBundle.

Command/InstallFontsCommand.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,19 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\Command;
10+
namespace opwoco\Bundle\BootstrapBundle\Command;
1111

12-
use opwoco\BootstrapBundle\Constant\IconSet;
12+
use opwoco\Bundle\BootstrapBundle\Constant\IconSet;
1313
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
14+
use Symfony\Component\Console\Input\InputArgument;
1415
use Symfony\Component\Console\Input\InputInterface;
1516
use Symfony\Component\Console\Input\InputOption;
1617
use Symfony\Component\Console\Output\OutputInterface;
1718
use Symfony\Component\Filesystem\Filesystem;
1819
use Symfony\Component\Finder\Finder;
1920
use Mopa\Bridge\Composer\Adapter\ComposerAdapter;
2021
use Mopa\Bridge\Composer\Util\ComposerPathFinder;
22+
use Symfony\Component\Validator\Constraints\Optional;
2123

2224
/**
2325
* Command to create Bootstrap symlink to OpwocoBootstrapBundle.

Command/SyncFontsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\Command;
10+
namespace opwoco\Bundle\BootstrapBundle\Command;
1111

1212
use Mopa\Bridge\Composer\Adapter\ComposerAdapter;
1313
use Mopa\Bridge\Composer\Util\ComposerPathFinder;
14-
use opwoco\BootstrapBundle\Constant\IconSet;
14+
use opwoco\Bundle\BootstrapBundle\Constant\IconSet;
1515
use Sabberworm\CSS\CSSList\Document;
1616
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
1717
use Symfony\Component\Console\Input\InputInterface;

Composer/ScriptHandler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\Composer;
10+
namespace opwoco\Bundle\BootstrapBundle\Composer;
1111

1212
use Composer\Script\Event;
1313
use Mopa\Bridge\Composer\Util\ComposerPathFinder;
14-
use opwoco\BootstrapBundle\Command\BootstrapSymlinkLessCommand;
15-
use opwoco\BootstrapBundle\Command\BootstrapSymlinkSassCommand;
14+
use opwoco\Bundle\BootstrapBundle\Command\BootstrapSymlinkLessCommand;
15+
use opwoco\Bundle\BootstrapBundle\Command\BootstrapSymlinkSassCommand;
1616

1717
/**
1818
* Script for Composer, create symlink to bootstrap lib into the BootstrapBundle.

Constant/IconSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace opwoco\BootstrapBundle\Constant;
3+
namespace opwoco\Bundle\BootstrapBundle\Constant;
44

55

66
class IconSet

DependencyInjection/Compiler/FormPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\DependencyInjection\Compiler;
10+
namespace opwoco\Bundle\BootstrapBundle\DependencyInjection\Compiler;
1111

1212
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
1313
use Symfony\Component\DependencyInjection\ContainerBuilder;

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\DependencyInjection;
10+
namespace opwoco\Bundle\BootstrapBundle\DependencyInjection;
1111

1212
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
1313
use Symfony\Component\Config\Definition\Builder\TreeBuilder;

DependencyInjection/opwocoBootstrapExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
namespace opwoco\BootstrapBundle\DependencyInjection;
10+
namespace opwoco\Bundle\BootstrapBundle\DependencyInjection;
1111

1212
use Symfony\Component\Config\FileLocator;
1313
use Symfony\Component\DependencyInjection\ContainerBuilder;

0 commit comments

Comments
 (0)