Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
wp-cli
/
vendor
/
mck89
/
peast
/
lib
/
Peast
/
Selector
/
Node
/
File Content:
Group.php
<?php /** * This file is part of the Peast package * * (c) Marco Marchiò <marco.mm89@gmail.com> * * For the full copyright and license information refer to the LICENSE file * distributed with this source code */ namespace Peast\Selector\Node; use Peast\Selector\Matches; /** * Selector group class * * @author Marco Marchiò <marco.mm89@gmail.com> */ class Group { /** * Selector combinators * * @var Combinator[] */ protected $combinators = array(); /** * Adds a combinator * * @param Combinator $combinators Combinator * * @return $this */ public function addCombinator(Combinator $combinators) { $this->combinators[] = $combinators; return $this; } /** * Executes the current group on the given matches * * @param Matches $matches Matches */ public function exec(Matches $matches) { foreach ($this->combinators as $combinator) { $combinator->exec($matches); } } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
Part
---
0755
Combinator.php
3923 bytes
0644
Group.php
1037 bytes
0644
Selector.php
1271 bytes
0644
N4ST4R_ID | Naxtarrr