class Cursor
Same name in this branch
- 11.1.x vendor/symfony/console/Cursor.php \Symfony\Component\Console\Cursor
Represents the current state of a dumper while dumping.
@author Nicolas Grekas <p@tchwork.com>
Hierarchy
- class \Symfony\Component\VarDumper\Cloner\Cursor
Expanded class hierarchy of Cursor
2 files declare their use of Cursor
- CliDumper.php in vendor/
symfony/ var-dumper/ Dumper/ CliDumper.php - HtmlDumper.php in vendor/
symfony/ var-dumper/ Dumper/ HtmlDumper.php
File
-
vendor/
symfony/ var-dumper/ Cloner/ Cursor.php, line 19
Namespace
Symfony\Component\VarDumper\ClonerView source
class Cursor {
public const HASH_INDEXED = Stub::ARRAY_INDEXED;
public const HASH_ASSOC = Stub::ARRAY_ASSOC;
public const HASH_OBJECT = Stub::TYPE_OBJECT;
public const HASH_RESOURCE = Stub::TYPE_RESOURCE;
public int $depth = 0;
public int $refIndex = 0;
public int $softRefTo = 0;
public int $softRefCount = 0;
public int $softRefHandle = 0;
public int $hardRefTo = 0;
public int $hardRefCount = 0;
public int $hardRefHandle = 0;
public int $hashType;
public string|int|null $hashKey = null;
public bool $hashKeyIsBinary;
public int $hashIndex = 0;
public int $hashLength = 0;
public int $hashCut = 0;
public bool $stop = false;
public array $attr = [];
public bool $skipChildren = false;
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
Cursor::$attr | public | property | |
Cursor::$depth | public | property | |
Cursor::$hardRefCount | public | property | |
Cursor::$hardRefHandle | public | property | |
Cursor::$hardRefTo | public | property | |
Cursor::$hashCut | public | property | |
Cursor::$hashIndex | public | property | |
Cursor::$hashKey | public | property | |
Cursor::$hashKeyIsBinary | public | property | |
Cursor::$hashLength | public | property | |
Cursor::$hashType | public | property | |
Cursor::$refIndex | public | property | |
Cursor::$skipChildren | public | property | |
Cursor::$softRefCount | public | property | |
Cursor::$softRefHandle | public | property | |
Cursor::$softRefTo | public | property | |
Cursor::$stop | public | property | |
Cursor::HASH_ASSOC | public | constant | |
Cursor::HASH_INDEXED | public | constant | |
Cursor::HASH_OBJECT | public | constant | |
Cursor::HASH_RESOURCE | public | constant |