Skip to content

Commit

Permalink
Rename Kernel namepace
Browse files Browse the repository at this point in the history
From `src` to `Surfnet\StepupRa` this sticks to the naming convention we
stick to in the other stepup projects
  • Loading branch information
MKodde committed Apr 11, 2024
1 parent 1e3e018 commit 2d8282c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

use src\Kernel;
use Surfnet\StepupRa\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;

if (!is_file(dirname(__DIR__).'/vendor/autoload.php')) {
Expand Down
2 changes: 1 addition & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/


use src\Kernel;
use Surfnet\StepupRa\Kernel;

require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
require_once dirname(__DIR__).'/config/bootstrap.php';
Expand Down
2 changes: 1 addition & 1 deletion src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* limitations under the License.
*/

namespace src;
namespace Surfnet\StepupRa;

use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
Expand Down

0 comments on commit 2d8282c

Please sign in to comment.