Skip to content

Commit

Permalink
fix namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed May 9, 2016
1 parent 179c94f commit 186ca4e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/fusio
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if(!empty($autoloadFile))
{
$container = require_once($containerFile);

PSX\Bootstrap::setupEnvironment($container->get('config'));
PSX\Framework\Bootstrap::setupEnvironment($container->get('config'));

$container->get('console')->run();
}
Expand Down
2 changes: 1 addition & 1 deletion public/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var fusioApp = angular.module('fusioApp', [
'fusioApp.user'
]);

fusioApp.value('version', 'v0.2');
fusioApp.value('version', 'v0.3');

fusioApp.factory('fusioIsAuthenticated', ['$location', '$window', '$q', function($location, $window, $q) {
return {
Expand Down
2 changes: 1 addition & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

$container = require_once(__DIR__ . '/../container.php');

PSX\Bootstrap::setupEnvironment($container->get('config'));
PSX\Framework\Bootstrap::setupEnvironment($container->get('config'));

$request = $container->get('request_factory')->createRequest();
$response = $container->get('response_factory')->createResponse();
Expand Down
2 changes: 1 addition & 1 deletion public/server.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
$loader = require(__DIR__ . '/../vendor/autoload.php');
$container = require_once(__DIR__ . '/../container.php');

PSX\Bootstrap::setupEnvironment($container->get('config'));
PSX\Framework\Bootstrap::setupEnvironment($container->get('config'));

// setup connection
$params = null;
Expand Down

0 comments on commit 186ca4e

Please sign in to comment.