Page MenuHomeWickedGov Phorge

CSSStyleSheet.php
No OneTemporary

Size
4 KB
Referenced Files
None
Subscribers
None

CSSStyleSheet.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Helper;
trait CSSStyleSheet {
// Underscore is used to avoid conflicts with DOM-reserved names
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
/**
* Handle an attempt to get a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* return null (like JavaScript), dynamically create the
* property, etc.
* @param string $prop the name of the property requested
* @return mixed
*/
abstract protected function _getMissingProp( string $prop );
/**
* Handle an attempt to set a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* ignore the operation (like JavaScript), dynamically create
* the property, etc.
* @param string $prop the name of the property requested
* @param mixed $value the value to set
*/
abstract protected function _setMissingProp( string $prop, $value ): void;
// phpcs:enable
/**
* @param string $name
* @return mixed
*/
public function __get( string $name ) {
'@phan-var \Wikimedia\IDLeDOM\CSSStyleSheet $this';
// @var \Wikimedia\IDLeDOM\CSSStyleSheet $this
switch ( $name ) {
case "type":
return $this->getType();
case "href":
return $this->getHref();
case "ownerNode":
return $this->getOwnerNode();
case "parentStyleSheet":
return $this->getParentStyleSheet();
case "title":
return $this->getTitle();
case "media":
return $this->getMedia();
case "disabled":
return $this->getDisabled();
case "ownerRule":
return $this->getOwnerRule();
case "cssRules":
return $this->getCssRules();
case "rules":
return $this->getRules();
default:
break;
}
'@phan-var \Wikimedia\IDLeDOM\Helper\CSSStyleSheet $this';
// @var \Wikimedia\IDLeDOM\Helper\CSSStyleSheet $this
return $this->_getMissingProp( $name );
}
/**
* @param string $name
* @return bool
*/
public function __isset( string $name ): bool {
'@phan-var \Wikimedia\IDLeDOM\CSSStyleSheet $this';
// @var \Wikimedia\IDLeDOM\CSSStyleSheet $this
switch ( $name ) {
case "type":
return true;
case "href":
return $this->getHref() !== null;
case "ownerNode":
return $this->getOwnerNode() !== null;
case "parentStyleSheet":
return $this->getParentStyleSheet() !== null;
case "title":
return $this->getTitle() !== null;
case "media":
return true;
case "disabled":
return true;
case "ownerRule":
return $this->getOwnerRule() !== null;
case "cssRules":
return true;
case "rules":
return true;
default:
break;
}
return false;
}
/**
* @param string $name
* @param mixed $value
*/
public function __set( string $name, $value ): void {
'@phan-var \Wikimedia\IDLeDOM\CSSStyleSheet $this';
// @var \Wikimedia\IDLeDOM\CSSStyleSheet $this
switch ( $name ) {
case "media":
$this->setMedia( $value );
return;
case "disabled":
$this->setDisabled( $value );
return;
default:
break;
}
'@phan-var \Wikimedia\IDLeDOM\Helper\CSSStyleSheet $this';
// @var \Wikimedia\IDLeDOM\Helper\CSSStyleSheet $this
$this->_setMissingProp( $name, $value );
}
/**
* @param string $name
*/
public function __unset( string $name ): void {
'@phan-var \Wikimedia\IDLeDOM\CSSStyleSheet $this';
// @var \Wikimedia\IDLeDOM\CSSStyleSheet $this
switch ( $name ) {
case "type":
break;
case "href":
break;
case "ownerNode":
break;
case "parentStyleSheet":
break;
case "title":
break;
case "media":
break;
case "disabled":
break;
case "ownerRule":
break;
case "cssRules":
break;
case "rules":
break;
default:
return;
}
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "__unset"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $name .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 13:30 (3 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
42/16/e289010135bb27c5fa73339b6954
Default Alt Text
CSSStyleSheet.php (4 KB)

Event Timeline