Completed
Pull Request — master (#5)
by
unknown
20:18
created
src/Database.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -209,6 +209,7 @@
 block discarded – undo
209 209
 
210 210
     /**
211 211
      * Return single object.
212
+     * @param string $entity_class
212 213
      */
213 214
     public function singleObject($entity_class)
214 215
     {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Vundi\Potato;
4 4
 
5
+use Dotenv;
6
+use Dotenv\Exception\InvalidPathException;
5 7
 use PDO;
6 8
 use PDOException;
7 9
 use Vundi\Potato\Exceptions\NonExistentID;
8
-use Dotenv;
9
-use Dotenv\Exception\InvalidPathException;
10 10
 
11 11
 class Database
12 12
 {
Please login to merge, or discard this patch.