OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
symfony
/
yaml
/
Tests
/
Fixtures
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:21 AM
rwxr-xr-x
📄
FooBackedEnum.php
118 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
FooUnitEnum.php
100 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsAnchorAlias.yml
870 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsBasicTests.yml
4.79 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsBlockMapping.yml
950 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsDocumentSeparator.yml
1.56 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsErrorTests.yml
645 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsFlowCollections.yml
1.6 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsFoldedScalars.yml
4.01 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsNullsAndEmpties.yml
698 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsSpecificationExamples.yml
41.4 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsTypeTransfers.yml
6.49 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
arrow.gif
185 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
booleanMappingKeys.yml
149 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
embededPhp.yml
32 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
escapedCharacters.yml
2.33 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
index.yml
330 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
nonStringKeys.yml
62 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
not_readable.yml
330 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
nullMappingKey.yml
107 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
numericMappingKeys.yml
393 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfComments.yml
1.97 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfCompact.yml
2.84 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfMergeKey.yml
2.32 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfObjects.yml
290 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfQuotes.yml
761 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfTests.yml
2.19 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
unindentedCollections.yml
1.75 KB
08/07/2024 04:34:22 AM
rw-r--r--
Editing: YtsAnchorAlias.yml
Close
--- %YAML:1.0 test: Simple Alias Example brief: > If you need to refer to the same item of data twice, you can give that item an alias. The alias is a plain string, starting with an ampersand. The item may then be referred to by the alias throughout your document by using an asterisk before the name of the alias. This is called an anchor. yaml: | - &showell Steve - Clark - Brian - Oren - *showell php: | ['Steve', 'Clark', 'Brian', 'Oren', 'Steve'] --- test: Alias of a Mapping brief: > An alias can be used on any item of data, including sequences, mappings, and other complex data types. yaml: | - &hello Meat: pork Starch: potato - banana - *hello php: | [['Meat'=>'pork', 'Starch'=>'potato'], 'banana', ['Meat'=>'pork', 'Starch'=>'potato']]