/opt/cpanel/ea-wappspector/vendor/phar-io/manifest/src/values
NameSizeModeActions
Application.php5040644editdlrm
ApplicationName.php11800644editdlrm
Author.php13040644editdlrm
AuthorCollection.php10460644editdlrm
AuthorCollectionIterator.php11570644editdlrm
BundledComponent.php8400644editdlrm
BundledComponentCollection.php11860644editdlrm
BundledComponentCollectionIterator.php12770644editdlrm
CopyrightInformation.php8600644editdlrm
Email.php9120644editdlrm
Extension.php14300644editdlrm
Library.php4960644editdlrm
License.php7640644editdlrm
Manifest.php26050644editdlrm
PhpExtensionRequirement.php6820644editdlrm
PhpVersionRequirement.php8040644editdlrm
Requirement.php4240644editdlrm
RequirementCollection.php11160644editdlrm
RequirementCollectionIterator.php12170644editdlrm
Type.php11870644editdlrm
Url.php9390644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/phar-io/manifest/src/values/BundledComponentCollection.php (1186B)
, Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * */ namespace PharIo\Manifest; use Countable; use IteratorAggregate; use function count; /** @template-implements IteratorAggregate */ class BundledComponentCollection implements Countable, IteratorAggregate { /** @var BundledComponent[] */ private $bundledComponents = []; public function add(BundledComponent $bundledComponent): void { $this->bundledComponents[] = $bundledComponent; } /** * @return BundledComponent[] */ public function getBundledComponents(): array { return $this->bundledComponents; } public function count(): int { return count($this->bundledComponents); } public function getIterator(): BundledComponentCollectionIterator { return new BundledComponentCollectionIterator($this); } }