Explorar o código

Initial commit of PHP SQL Mapper

michelphp hai 1 día
pai
achega
4ba9e58fd8

+ 1 - 1
src/Count.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Michel\Sql;
+namespace Michel\SqlMapper;
 
 use http\Encoding\Stream;
 

+ 1 - 1
src/Delete.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Michel\Sql;
+namespace Michel\SqlMapper;
 
 use Michel\SqlMapper\Interfaces\QueryInterface;
 

+ 1 - 1
src/Insert.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Michel\Sql;
+namespace Michel\SqlMapper;
 
 use Michel\SqlMapper\Interfaces\QueryInterface;
 

+ 1 - 1
src/QueryBuilder.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Michel\Sql;
+namespace Michel\SqlMapper;
 
 /**
  * @package	php-query-builder

+ 1 - 1
src/Select.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Michel\Sql;
+namespace Michel\SqlMapper;
 
 use LogicException;
 use Michel\SqlMapper\Interfaces\QueryInterface;

+ 1 - 1
src/Update.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Michel\Sql;
+namespace Michel\SqlMapper;
 
 use Michel\SqlMapper\Interfaces\QueryInterface;
 

+ 1 - 1
tests/DeleteTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Test\Michel\Sql;
+namespace Test\Michel\SqlMapper;
 
 use Michel\UniTester\TestCase;
 use Michel\SqlMapper\Delete;

+ 1 - 1
tests/ExprTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Test\Michel\Sql;
+namespace Test\Michel\SqlMapper;
 
 use Michel\SqlMapper\Expression\Expr;
 use Michel\UniTester\TestCase;

+ 1 - 1
tests/InsertTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Test\Michel\Sql;
+namespace Test\Michel\SqlMapper;
 
 use Michel\SqlMapper\Insert;
 use Michel\UniTester\TestCase;

+ 1 - 1
tests/JoinQLTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Test\Michel\Sql;
+namespace Test\Michel\SqlMapper;
 
 use PDO;
 use Michel\SqlMapper\QL\JoinQL;

+ 1 - 1
tests/SelectTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Test\Michel\Sql;
+namespace Test\Michel\SqlMapper;
 
 use Michel\SqlMapper\QueryBuilder;
 use Michel\SqlMapper\Select;

+ 1 - 1
tests/UpdateTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Test\Michel\Sql;
+namespace Test\Michel\SqlMapper;
 
 use Michel\SqlMapper\Update;
 use Michel\UniTester\TestCase;