BSR to Bsr

This commit is contained in:
Guillermo Dev
2018-10-13 23:05:46 +02:00
parent ff482a52fa
commit 04c52849e5
6 changed files with 9 additions and 10 deletions

View File

@@ -1,8 +1,8 @@
<?php
namespace BSR\Db;
namespace Bsr\Db;
use BSR\Config\Configuration;
use BSR\Db\Exception\SqlException;
use Bsr\Config\Configuration;
use Bsr\Db\Exception\SqlException;
class Connection
{

View File

@@ -1,6 +1,5 @@
<?php
namespace BSR\Db;
namespace Bsr\Db;
class DbHelper
{

View File

@@ -1,7 +1,7 @@
<?php
namespace BSR\Db;
namespace Bsr\Db;
use BSR\Db\Exception\InvalidAttributeException;
use Bsr\Db\Exception\InvalidAttributeException;
/**
* Base class for mapping objects. inherit your database filled objects from here.

View File

@@ -1,6 +1,6 @@
<?php
namespace BSR\Db\Exception;
namespace Bsr\Db\Exception;
/**
* Exception raised when an invalid attribute name is accessed

View File

@@ -1,5 +1,5 @@
<?php
namespace BSR\Db;
namespace Bsr\Db;
class OdbcResultSet implements \Iterator, \ArrayAccess
{