mirror of
https://github.com/Mibew/CanteenHTML5.git
synced 2025-03-22 08:51:23 +03:00
38 lines
746 B
PHP
38 lines
746 B
PHP
<?php
|
|
|
|
/**
|
|
* @module Canteen\HTML5
|
|
*/
|
|
namespace Canteen\HTML5
|
|
{
|
|
/**
|
|
* Prototype class for all Canteen\HTML5 entities
|
|
*
|
|
* @class Proto
|
|
* @constructor
|
|
* @param {String} text the plain text string
|
|
*/
|
|
class Proto
|
|
{
|
|
/**
|
|
* General purpose getter to get attribute values
|
|
* @method __get
|
|
* @param {String} name The name of the property to set
|
|
*/
|
|
public function __get($name)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* See if a property exists
|
|
* @method __isset
|
|
* @param {String} name The name of the attribute
|
|
*/
|
|
public function __isset($name)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|