Page MenuHomeWickedGov Phorge

HTMLCollection.php
No OneTemporary

Size
885 B
Referenced Files
None
Subscribers
None

HTMLCollection.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Stub;
use Exception;
use Wikimedia\IDLeDOM\Element;
trait HTMLCollection {
// Underscore is used to avoid conflicts with DOM-reserved names
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
/**
* @return Exception
*/
abstract protected function _unimplemented(): Exception;
// phpcs:enable
/**
* @return int
*/
public function getLength(): int {
throw self::_unimplemented();
}
/**
* @param int $index
* @return Element|null
*/
public function item( int $index ) {
throw self::_unimplemented();
}
/**
* @param string $name
* @return Element|null
*/
public function namedItem( string $name ) {
throw self::_unimplemented();
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 16:37 (3 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8e/e1/2fdae04c5f51fe4b2b15c9547350
Default Alt Text
HTMLCollection.php (885 B)

Event Timeline