瀏覽代碼

Initial commit of PHP SQL Mapper

michelphp 22 小時之前
父節點
當前提交
4ba9e58fd8
共有 12 個文件被更改,包括 12 次插入12 次删除
  1. 1 1
      src/Count.php
  2. 1 1
      src/Delete.php
  3. 1 1
      src/Insert.php
  4. 1 1
      src/QueryBuilder.php
  5. 1 1
      src/Select.php
  6. 1 1
      src/Update.php
  7. 1 1
      tests/DeleteTest.php
  8. 1 1
      tests/ExprTest.php
  9. 1 1
      tests/InsertTest.php
  10. 1 1
      tests/JoinQLTest.php
  11. 1 1
      tests/SelectTest.php
  12. 1 1
      tests/UpdateTest.php

+ 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;