-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 added confirm option to readme again thanks @jaro-io
🐛 php bug fixes thanks @tristantbg 🐛 k4 icons size must be 24x24 svg thanks @tobimori ⬆️ upgraded dependencies ✨ confirm can be translated and template strings closes #114 closes #115 Signed-off-by: bnomei <[email protected]>
- Loading branch information
Showing
22 changed files
with
408 additions
and
420 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,24 +11,28 @@ | |
|
||
namespace Symfony\Component\Finder\Iterator; | ||
|
||
use Symfony\Component\Finder\SplFileInfo; | ||
|
||
/** | ||
* ExcludeDirectoryFilterIterator filters out directories. | ||
* | ||
* @author Fabien Potencier <[email protected]> | ||
* | ||
* @extends \FilterIterator<string, \SplFileInfo> | ||
* @implements \RecursiveIterator<string, \SplFileInfo> | ||
* @extends \FilterIterator<string, SplFileInfo> | ||
* | ||
* @implements \RecursiveIterator<string, SplFileInfo> | ||
*/ | ||
class ExcludeDirectoryFilterIterator extends \FilterIterator implements \RecursiveIterator | ||
{ | ||
/** @var \Iterator<string, SplFileInfo> */ | ||
private \Iterator $iterator; | ||
private bool $isRecursive; | ||
private array $excludedDirs = []; | ||
private ?string $excludedPattern = null; | ||
|
||
/** | ||
* @param \Iterator $iterator The Iterator to filter | ||
* @param string[] $directories An array of directories to exclude | ||
* @param \Iterator<string, SplFileInfo> $iterator The Iterator to filter | ||
* @param string[] $directories An array of directories to exclude | ||
*/ | ||
public function __construct(\Iterator $iterator, array $directories) | ||
{ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,13 +11,15 @@ | |
|
||
namespace Symfony\Component\Finder\Iterator; | ||
|
||
use Symfony\Component\Finder\SplFileInfo; | ||
|
||
/** | ||
* FilecontentFilterIterator filters files by their contents using patterns (regexps or strings). | ||
* | ||
* @author Fabien Potencier <[email protected]> | ||
* @author Włodzimierz Gajda <[email protected]> | ||
* | ||
* @extends MultiplePcreFilterIterator<string, \SplFileInfo> | ||
* @extends MultiplePcreFilterIterator<string, SplFileInfo> | ||
*/ | ||
class FilecontentFilterIterator extends MultiplePcreFilterIterator | ||
{ | ||
|
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
Oops, something went wrong.