%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/jetbrains/phpstorm-stubs/Parle/ |
| Current File : /home/graphicd/public_html/vebto/vendor/jetbrains/phpstorm-stubs/Parle/Stack.php |
<?php
namespace Parle;
class Stack
{
/* Properties */
/**
* @var bool Whether the stack is empty, readonly.
* @property-read
*/
public $empty = TRUE;
/**
* @var int Stack size, readonly.
* @property-read
*/
public $size = 0;
/**
* @var mixed Element on the top of the stack.
*/
public $top;
/* Methods */
/**
* Pop an item from the stack
*
* @link https://php.net/manual/en/parle-stack.pop.php
* @return void
*/
public function pop() : void {}
/**
* Push an item into the stack
*
* @link https://php.net/manual/en/parle-stack.push.php
* @param $item mixed Variable to be pushed.
* @return void
*/
public function push($item) {}
}