Skip to content

Commit f1e0d2f

Browse files
authored
v0.5
2 parents e03691a + 9bbeefb commit f1e0d2f

30 files changed

Lines changed: 49 additions & 45 deletions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [v0.5] - 2020-10-08
5+
6+
### Changed
7+
- **Possible break change** Fix typo with Output class (instead of Outpout)
48

59
## [v0.4] - 2020-09-25
610

lib/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
* @copyright 2017-2020 Kristuff
1919
*/
2020

lib/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
* @copyright 2017-2020 Kristuff
1919
*/
2020

lib/Datasource.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
*
1919
* @copyright 2017-2020 Kristuff
2020
*/
@@ -134,7 +134,7 @@ public function getDriver()
134134
* Get the PDO connection
135135
*
136136
* @access public
137-
* @return PDO
137+
* @return \PDO
138138
*/
139139
public function getConnection()
140140
{

lib/Driver/DatabaseDriver.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
*
1919
* @copyright 2017-2020 Kristuff
2020
*/
@@ -24,7 +24,7 @@
2424
use Kristuff\Patabase;
2525
use Kristuff\Patabase\Driver;
2626
use Kristuff\Patabase\Exception;
27-
use Kristuff\Patabase\Outpout;
27+
use Kristuff\Patabase\Output;
2828

2929
/**
3030
* Class DatabaseDriver
@@ -65,7 +65,7 @@ abstract class DatabaseDriver
6565
* @access private
6666
* @var string
6767
*/
68-
private $defaultOutputFormat = Outpout::ASSOC;
68+
private $defaultOutputFormat = Output::ASSOC;
6969

7070
/**
7171
* Options for CREATE TABLE

lib/Driver/DriverFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
* @copyright 2017-2020 Kristuff
1919
*/
2020

lib/Driver/Mysql/MysqlDriver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
*
1919
* @copyright 2017-2020 Kristuff
2020
*/
@@ -342,5 +342,5 @@ public function sqlColumnAutoIncrement($type)
342342
{
343343
return $type .' AUTO_INCREMENT';
344344
}
345-
345+
346346
}

lib/Driver/Postgres/PostgresDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
* @copyright 2017-2020 Kristuff
1919
*/
2020

lib/Driver/ServerDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
* @copyright 2017-2020 Kristuff
1919
*/
2020

lib/Driver/Sqlite/SqliteDatabase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.4.0
17+
* @version 0.5.0
1818
* @copyright 2017-2020 Kristuff
1919
*/
2020

0 commit comments

Comments
 (0)