Skip to content

Commit

Permalink
brand new fluent interface
Browse files Browse the repository at this point in the history
  • Loading branch information
insign committed Mar 25, 2024
1 parent 394483b commit 4b49bbb
Show file tree
Hide file tree
Showing 21 changed files with 14,659 additions and 120 deletions.
356 changes: 351 additions & 5 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/SevenZipTest.php --testdox"
"test": "vendor/bin/phpunit tests/SevenZipTest.php --testdox --display-warnings --color=always"
},
"config": {
"sort-packages": true
Expand Down
15 changes: 15 additions & 0 deletions src/Exceptions/ExecutableNotFoundException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace Verseles\SevenZip\Exceptions;

use Throwable;

class ExecutableNotFoundException extends \Exception
{

public function __construct($message = 'Executable 7z not found.', $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}

}
Loading

0 comments on commit 4b49bbb

Please sign in to comment.