Skip to content

Commit

Permalink
chore: update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreGerault committed Jul 13, 2021
1 parent 7bc7715 commit 052663e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/AGerault/Core/Application.php
Original file line number Diff line number Diff line change
@@ -6,13 +6,11 @@
use AGerault\Framework\Contracts\Routing\RouteCollectionInterface;
use AGerault\Framework\Contracts\Services\ServiceContainerInterface;
use AGerault\Framework\Routing\Route;
use AGerault\Framework\Routing\RouteCollection;
use AGerault\Framework\Services\ServiceContainer;
use Psr\Container\ContainerInterface;
use Exception;

class Application implements ApplicationInterface
{
protected ContainerInterface $container;
protected ServiceContainerInterface $container;
protected RouteCollectionInterface $routes;

public function __construct(ServiceContainerInterface $container, RouteCollectionInterface $routes)
@@ -23,7 +21,7 @@ public function __construct(ServiceContainerInterface $container, RouteCollectio

public function version(): string
{
return '0.0.1-BETA';
return '0.0.3-BETA';
}

public function basePath($path = ''): string
@@ -52,7 +50,7 @@ public function container(): ServiceContainerInterface
}

/**
* @throws \Exception
* @throws Exception
*/
public function registerRoutes(array $router): RouteCollectionInterface
{

0 comments on commit 052663e

Please sign in to comment.