-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06a4555
commit 17a2c21
Showing
11 changed files
with
47 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,18 @@ | ||
# Change Log | ||
|
||
## 2.0.1 | ||
|
||
### Changed | ||
|
||
- `README.md` updates | ||
|
||
## 2.0.0 | ||
|
||
### Changed | ||
|
||
- Refactor method signature for `Pseudo\Pdo::mock()` | ||
- Change `Pseudo\Pdo::mock(string $sql, $params = null, $expectedResults = null)` | ||
|
||
## 1.0.3 | ||
|
||
### Fixed | ||
|
||
- Repairing `composer.json` | ||
|
||
### Chore | ||
|
||
- Dropping dead code | ||
|
||
## 1.0.2 | ||
|
||
### Chore | ||
|
||
- Restructuring exceptions directory | ||
|
||
## 1.0.1 | ||
|
||
### Fixed | ||
|
||
- Add support for `Pseudo\PdoStatement::getIterator()` | ||
|
||
## 1.0.0 | ||
|
||
### Changed | ||
|
||
- Library forked from [jimbosjb/pseudo](https://github.com/jimbojsb/pseudo) | ||
- Connor take ownership | ||
- Update entire library to be compatible for PHP 8.x | ||
- `README.md` updates | ||
- Restructuring exceptions directory | ||
- Add support for `Pseudo\PdoStatement::getIterator()` | ||
- Dropping dead code | ||
- Repairing `composer.json` | ||
- Rename `PdoException` class to `PseudoPdoException` | ||
- Rename `Exception` class to `PseudoException` | ||
- Refactor method signature for `Pseudo\Pdo::mock()` | ||
- Change `Pseudo\Pdo::mock(string $sql, $params = null, $expectedResults = null)` |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/Exceptions/Exception.php → src/Exceptions/PseudoException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
namespace Pseudo\Exceptions; | ||
|
||
class Exception extends \Exception | ||
class PseudoException extends \Exception | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
namespace Pseudo\Exceptions; | ||
|
||
class PseudoPdoException extends \PDOException | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters