mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 04:28:44 +02:00
N°2651 rollback gitignore for lib tests dirs
Too dangerous ! We'll work properly on this but for 2.8
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"service": "service_1",
|
||||
"public": true
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
- Service: `service_1`
|
||||
- Public: yes
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
[39;49m // [39;49mThis service is an alias for the service [32mservice_1[39m
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<alias service="service_1" public="true"/>
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"service": "service_2",
|
||||
"public": false
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
- Service: `service_2`
|
||||
- Public: no
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
[39;49m // [39;49mThis service is an alias for the service [32mservice_2[39m
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<alias service="service_2" public="false"/>
|
||||
@@ -0,0 +1,20 @@
|
||||
[
|
||||
{
|
||||
"service": "service_1",
|
||||
"public": true
|
||||
},
|
||||
{
|
||||
"class": "Full\\Qualified\\Class1",
|
||||
"public": true,
|
||||
"synthetic": false,
|
||||
"lazy": true,
|
||||
"shared": true,
|
||||
"abstract": true,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": null,
|
||||
"factory_class": "Full\\Qualified\\FactoryClass",
|
||||
"factory_method": "get",
|
||||
"tags": []
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,17 @@
|
||||
### alias_1
|
||||
|
||||
- Service: `service_1`
|
||||
- Public: yes
|
||||
|
||||
### service_1
|
||||
|
||||
- Class: `Full\Qualified\Class1`
|
||||
- Public: yes
|
||||
- Synthetic: no
|
||||
- Lazy: yes
|
||||
- Shared: yes
|
||||
- Abstract: yes
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- Factory Class: `Full\Qualified\FactoryClass`
|
||||
- Factory Method: `get`
|
||||
@@ -0,0 +1,21 @@
|
||||
[39;49m // [39;49mThis service is an alias for the service [32mservice_1[39m
|
||||
|
||||
[33mInformation for Service "[39m[32mservice_1[39m[33m"[39m
|
||||
[33m===================================[39m
|
||||
|
||||
---------------- -----------------------------
|
||||
[32m Option [39m [32m Value [39m
|
||||
---------------- -----------------------------
|
||||
Service ID service_1
|
||||
Class Full\Qualified\Class1
|
||||
Tags -
|
||||
Public yes
|
||||
Synthetic no
|
||||
Lazy yes
|
||||
Shared yes
|
||||
Abstract yes
|
||||
Autowired no
|
||||
Autoconfigured no
|
||||
Factory Class Full\Qualified\FactoryClass
|
||||
Factory Method get
|
||||
---------------- -----------------------------
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<alias id="alias_1" service="service_1" public="true"/>
|
||||
<definition id="service_1" class="Full\Qualified\Class1" public="true" synthetic="false" lazy="true" shared="true" abstract="true" autowired="false" autoconfigured="false" file="">
|
||||
<factory class="Full\Qualified\FactoryClass" method="get"/>
|
||||
</definition>
|
||||
@@ -0,0 +1,41 @@
|
||||
[
|
||||
{
|
||||
"service": "service_2",
|
||||
"public": false
|
||||
},
|
||||
{
|
||||
"class": "Full\\Qualified\\Class2",
|
||||
"public": false,
|
||||
"synthetic": true,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": "\/path\/to\/file",
|
||||
"factory_service": "factory.service",
|
||||
"factory_method": "get",
|
||||
"calls": [
|
||||
"setMailer"
|
||||
],
|
||||
"tags": [
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr1": "val1",
|
||||
"attr2": "val2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr3": "val3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag2",
|
||||
"parameters": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,25 @@
|
||||
### alias_2
|
||||
|
||||
- Service: `service_2`
|
||||
- Public: no
|
||||
|
||||
### service_2
|
||||
|
||||
- Class: `Full\Qualified\Class2`
|
||||
- Public: no
|
||||
- Synthetic: yes
|
||||
- Lazy: no
|
||||
- Shared: yes
|
||||
- Abstract: no
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- File: `/path/to/file`
|
||||
- Factory Service: `factory.service`
|
||||
- Factory Method: `get`
|
||||
- Call: `setMailer`
|
||||
- Tag: `tag1`
|
||||
- Attr1: val1
|
||||
- Attr2: val2
|
||||
- Tag: `tag1`
|
||||
- Attr3: val3
|
||||
- Tag: `tag2`
|
||||
@@ -0,0 +1,25 @@
|
||||
[39;49m // [39;49mThis service is an alias for the service [32mservice_2[39m
|
||||
|
||||
[33mInformation for Service "[39m[32mservice_2[39m[33m"[39m
|
||||
[33m===================================[39m
|
||||
|
||||
----------------- ---------------------------------
|
||||
[32m Option [39m [32m Value [39m
|
||||
----------------- ---------------------------------
|
||||
Service ID service_2
|
||||
Class Full\Qualified\Class2
|
||||
[39;49m Tags tag1 ([39;49m[32mattr1[39m[39;49m: val1, [39;49m[32mattr2[39m[39;49m: val2)[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49m[39;49mtag1 ([39;49m[32mattr3[39m[39;49m: val3)[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49mtag2
|
||||
Calls setMailer
|
||||
Public no
|
||||
Synthetic yes
|
||||
Lazy no
|
||||
Shared yes
|
||||
Abstract no
|
||||
Autowired no
|
||||
Autoconfigured no
|
||||
Required File /path/to/file
|
||||
Factory Service factory.service
|
||||
Factory Method get
|
||||
----------------- ---------------------------------
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<alias id="alias_2" service="service_2" public="false"/>
|
||||
<definition id="service_2" class="Full\Qualified\Class2" public="false" synthetic="true" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="/path/to/file">
|
||||
<factory service="factory.service" method="get"/>
|
||||
<calls>
|
||||
<call method="setMailer"/>
|
||||
</calls>
|
||||
<tags>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr1">val1</parameter>
|
||||
<parameter name="attr2">val2</parameter>
|
||||
</tag>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr3">val3</parameter>
|
||||
</tag>
|
||||
<tag name="tag2"/>
|
||||
</tags>
|
||||
</definition>
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"twig.form.resources": ["bootstrap_3_horizontal_layout.html.twig", "bootstrap_3_layout.html.twig", "form_div_layout.html.twig", "form_table_layout.html.twig"]
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
twig.form.resources
|
||||
===================
|
||||
|
||||
["bootstrap_3_horizontal_layout.html.twig","bootstrap_3_layo...
|
||||
@@ -0,0 +1,5 @@
|
||||
--------------------- -----------------------------------------------------------------
|
||||
[32m Parameter [39m [32m Value [39m
|
||||
--------------------- -----------------------------------------------------------------
|
||||
twig.form.resources ["bootstrap_3_horizontal_layout.html.twig","bootstrap_3_layo...
|
||||
--------------------- -----------------------------------------------------------------
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<parameter key="twig.form.resources">["bootstrap_3_horizontal_layout.html.twig","bootstrap_3_layo...</parameter>
|
||||
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"definitions": {
|
||||
"definition_1": {
|
||||
"class": "Full\\Qualified\\Class1",
|
||||
"public": true,
|
||||
"synthetic": false,
|
||||
"lazy": true,
|
||||
"shared": true,
|
||||
"abstract": true,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"arguments": [
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition2"
|
||||
},
|
||||
"%parameter%",
|
||||
{
|
||||
"class": "inline_service",
|
||||
"public": false,
|
||||
"synthetic": false,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"arguments": [
|
||||
"arg1",
|
||||
"arg2"
|
||||
],
|
||||
"file": null,
|
||||
"tags": []
|
||||
},
|
||||
[
|
||||
"foo",
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition2"
|
||||
},
|
||||
{
|
||||
"class": "inline_service",
|
||||
"public": false,
|
||||
"synthetic": false,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"arguments": [],
|
||||
"file": null,
|
||||
"tags": []
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition_1"
|
||||
},
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition_2"
|
||||
}
|
||||
]
|
||||
],
|
||||
"file": null,
|
||||
"factory_class": "Full\\Qualified\\FactoryClass",
|
||||
"factory_method": "get",
|
||||
"tags": []
|
||||
}
|
||||
},
|
||||
"aliases": {
|
||||
"alias_1": {
|
||||
"service": "service_1",
|
||||
"public": true
|
||||
}
|
||||
},
|
||||
"services": {
|
||||
"service_container": "Symfony\\Component\\DependencyInjection\\ContainerBuilder"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
Public services
|
||||
===============
|
||||
|
||||
Definitions
|
||||
-----------
|
||||
|
||||
### definition_1
|
||||
|
||||
- Class: `Full\Qualified\Class1`
|
||||
- Public: yes
|
||||
- Synthetic: no
|
||||
- Lazy: yes
|
||||
- Shared: yes
|
||||
- Abstract: yes
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- Arguments: yes
|
||||
- Factory Class: `Full\Qualified\FactoryClass`
|
||||
- Factory Method: `get`
|
||||
|
||||
|
||||
Aliases
|
||||
-------
|
||||
|
||||
### alias_1
|
||||
|
||||
- Service: `service_1`
|
||||
- Public: yes
|
||||
|
||||
|
||||
Services
|
||||
--------
|
||||
|
||||
- `service_container`: `Symfony\Component\DependencyInjection\ContainerBuilder`
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
[33mSymfony Container Public Services[39m
|
||||
[33m=================================[39m
|
||||
|
||||
------------------- --------------------------------------------------------
|
||||
[32m Service ID [39m [32m Class name [39m
|
||||
------------------- --------------------------------------------------------
|
||||
alias_1 alias for "service_1"
|
||||
definition_1 Full\Qualified\Class1
|
||||
service_container Symfony\Component\DependencyInjection\ContainerBuilder
|
||||
------------------- --------------------------------------------------------
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<container>
|
||||
<alias id="alias_1" service="service_1" public="true"/>
|
||||
<definition id="definition_1" class="Full\Qualified\Class1" public="true" synthetic="false" lazy="true" shared="true" abstract="true" autowired="false" autoconfigured="false" file="">
|
||||
<factory class="Full\Qualified\FactoryClass" method="get"/>
|
||||
<argument type="service" id="definition2"/>
|
||||
<argument>%parameter%</argument>
|
||||
<argument>
|
||||
<definition class="inline_service" public="false" synthetic="false" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="">
|
||||
<argument>arg1</argument>
|
||||
<argument>arg2</argument>
|
||||
</definition>
|
||||
</argument>
|
||||
<argument type="collection">
|
||||
<argument>foo</argument>
|
||||
<argument type="service" id="definition2"/>
|
||||
<argument>
|
||||
<definition class="inline_service" public="false" synthetic="false" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file=""/>
|
||||
</argument>
|
||||
</argument>
|
||||
<argument type="iterator">
|
||||
<argument type="service" id="definition_1"/>
|
||||
<argument type="service" id="definition_2"/>
|
||||
</argument>
|
||||
</definition>
|
||||
<service id="service_container" class="Symfony\Component\DependencyInjection\ContainerBuilder"/>
|
||||
</container>
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"definitions": {
|
||||
"definition_1": {
|
||||
"class": "Full\\Qualified\\Class1",
|
||||
"public": true,
|
||||
"synthetic": false,
|
||||
"lazy": true,
|
||||
"shared": true,
|
||||
"abstract": true,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": null,
|
||||
"factory_class": "Full\\Qualified\\FactoryClass",
|
||||
"factory_method": "get",
|
||||
"tags": []
|
||||
}
|
||||
},
|
||||
"aliases": {
|
||||
"alias_1": {
|
||||
"service": "service_1",
|
||||
"public": true
|
||||
}
|
||||
},
|
||||
"services": {
|
||||
"service_container": "Symfony\\Component\\DependencyInjection\\ContainerBuilder"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
Public services
|
||||
===============
|
||||
|
||||
Definitions
|
||||
-----------
|
||||
|
||||
### definition_1
|
||||
|
||||
- Class: `Full\Qualified\Class1`
|
||||
- Public: yes
|
||||
- Synthetic: no
|
||||
- Lazy: yes
|
||||
- Shared: yes
|
||||
- Abstract: yes
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- Factory Class: `Full\Qualified\FactoryClass`
|
||||
- Factory Method: `get`
|
||||
|
||||
|
||||
Aliases
|
||||
-------
|
||||
|
||||
### alias_1
|
||||
|
||||
- Service: `service_1`
|
||||
- Public: yes
|
||||
|
||||
|
||||
Services
|
||||
--------
|
||||
|
||||
- `service_container`: `Symfony\Component\DependencyInjection\ContainerBuilder`
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
[33mSymfony Container Public Services[39m
|
||||
[33m=================================[39m
|
||||
|
||||
------------------- --------------------------------------------------------
|
||||
[32m Service ID [39m [32m Class name [39m
|
||||
------------------- --------------------------------------------------------
|
||||
alias_1 alias for "service_1"
|
||||
definition_1 Full\Qualified\Class1
|
||||
service_container Symfony\Component\DependencyInjection\ContainerBuilder
|
||||
------------------- --------------------------------------------------------
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<container>
|
||||
<alias id="alias_1" service="service_1" public="true"/>
|
||||
<definition id="definition_1" class="Full\Qualified\Class1" public="true" synthetic="false" lazy="true" shared="true" abstract="true" autowired="false" autoconfigured="false" file="">
|
||||
<factory class="Full\Qualified\FactoryClass" method="get"/>
|
||||
</definition>
|
||||
<service id="service_container" class="Symfony\Component\DependencyInjection\ContainerBuilder"/>
|
||||
</container>
|
||||
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"definitions": {
|
||||
"definition_1": {
|
||||
"class": "Full\\Qualified\\Class1",
|
||||
"public": true,
|
||||
"synthetic": false,
|
||||
"lazy": true,
|
||||
"shared": true,
|
||||
"abstract": true,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": null,
|
||||
"factory_class": "Full\\Qualified\\FactoryClass",
|
||||
"factory_method": "get",
|
||||
"tags": []
|
||||
},
|
||||
"definition_2": {
|
||||
"class": "Full\\Qualified\\Class2",
|
||||
"public": false,
|
||||
"synthetic": true,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": "\/path\/to\/file",
|
||||
"factory_service": "factory.service",
|
||||
"factory_method": "get",
|
||||
"calls": [
|
||||
"setMailer"
|
||||
],
|
||||
"tags": [
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr1": "val1",
|
||||
"attr2": "val2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr3": "val3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag2",
|
||||
"parameters": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"aliases": {
|
||||
"alias_1": {
|
||||
"service": "service_1",
|
||||
"public": true
|
||||
},
|
||||
"alias_2": {
|
||||
"service": "service_2",
|
||||
"public": false
|
||||
}
|
||||
},
|
||||
"services": {
|
||||
"service_container": "Symfony\\Component\\DependencyInjection\\ContainerBuilder"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
Public and private services
|
||||
===========================
|
||||
|
||||
Definitions
|
||||
-----------
|
||||
|
||||
### definition_1
|
||||
|
||||
- Class: `Full\Qualified\Class1`
|
||||
- Public: yes
|
||||
- Synthetic: no
|
||||
- Lazy: yes
|
||||
- Shared: yes
|
||||
- Abstract: yes
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- Factory Class: `Full\Qualified\FactoryClass`
|
||||
- Factory Method: `get`
|
||||
|
||||
### definition_2
|
||||
|
||||
- Class: `Full\Qualified\Class2`
|
||||
- Public: no
|
||||
- Synthetic: yes
|
||||
- Lazy: no
|
||||
- Shared: yes
|
||||
- Abstract: no
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- File: `/path/to/file`
|
||||
- Factory Service: `factory.service`
|
||||
- Factory Method: `get`
|
||||
- Call: `setMailer`
|
||||
- Tag: `tag1`
|
||||
- Attr1: val1
|
||||
- Attr2: val2
|
||||
- Tag: `tag1`
|
||||
- Attr3: val3
|
||||
- Tag: `tag2`
|
||||
|
||||
|
||||
Aliases
|
||||
-------
|
||||
|
||||
### alias_1
|
||||
|
||||
- Service: `service_1`
|
||||
- Public: yes
|
||||
|
||||
### alias_2
|
||||
|
||||
- Service: `service_2`
|
||||
- Public: no
|
||||
|
||||
|
||||
Services
|
||||
--------
|
||||
|
||||
- `service_container`: `Symfony\Component\DependencyInjection\ContainerBuilder`
|
||||
@@ -0,0 +1,14 @@
|
||||
|
||||
[33mSymfony Container Public and Private Services[39m
|
||||
[33m=============================================[39m
|
||||
|
||||
------------------- --------------------------------------------------------
|
||||
[32m Service ID [39m [32m Class name [39m
|
||||
------------------- --------------------------------------------------------
|
||||
alias_1 alias for "service_1"
|
||||
alias_2 alias for "service_2"
|
||||
definition_1 Full\Qualified\Class1
|
||||
definition_2 Full\Qualified\Class2
|
||||
service_container Symfony\Component\DependencyInjection\ContainerBuilder
|
||||
------------------- --------------------------------------------------------
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<container>
|
||||
<alias id="alias_1" service="service_1" public="true"/>
|
||||
<alias id="alias_2" service="service_2" public="false"/>
|
||||
<definition id="definition_1" class="Full\Qualified\Class1" public="true" synthetic="false" lazy="true" shared="true" abstract="true" autowired="false" autoconfigured="false" file="">
|
||||
<factory class="Full\Qualified\FactoryClass" method="get"/>
|
||||
</definition>
|
||||
<definition id="definition_2" class="Full\Qualified\Class2" public="false" synthetic="true" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="/path/to/file">
|
||||
<factory service="factory.service" method="get"/>
|
||||
<calls>
|
||||
<call method="setMailer"/>
|
||||
</calls>
|
||||
<tags>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr1">val1</parameter>
|
||||
<parameter name="attr2">val2</parameter>
|
||||
</tag>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr3">val3</parameter>
|
||||
</tag>
|
||||
<tag name="tag2"/>
|
||||
</tags>
|
||||
</definition>
|
||||
<service id="service_container" class="Symfony\Component\DependencyInjection\ContainerBuilder"/>
|
||||
</container>
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"definitions": {
|
||||
"definition_2": {
|
||||
"class": "Full\\Qualified\\Class2",
|
||||
"public": false,
|
||||
"synthetic": true,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": "\/path\/to\/file",
|
||||
"factory_service": "factory.service",
|
||||
"factory_method": "get",
|
||||
"calls": [
|
||||
"setMailer"
|
||||
],
|
||||
"tags": [
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr1": "val1",
|
||||
"attr2": "val2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr3": "val3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag2",
|
||||
"parameters": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"aliases": [],
|
||||
"services": []
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
Public and private services with tag `tag1`
|
||||
===========================================
|
||||
|
||||
Definitions
|
||||
-----------
|
||||
|
||||
### definition_2
|
||||
|
||||
- Class: `Full\Qualified\Class2`
|
||||
- Public: no
|
||||
- Synthetic: yes
|
||||
- Lazy: no
|
||||
- Shared: yes
|
||||
- Abstract: no
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- File: `/path/to/file`
|
||||
- Factory Service: `factory.service`
|
||||
- Factory Method: `get`
|
||||
- Call: `setMailer`
|
||||
- Tag: `tag1`
|
||||
- Attr1: val1
|
||||
- Attr2: val2
|
||||
- Tag: `tag1`
|
||||
- Attr3: val3
|
||||
- Tag: `tag2`
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
[33mSymfony Container Public and Private Services Tagged with "tag1" Tag[39m
|
||||
[33m====================================================================[39m
|
||||
|
||||
-------------- ------- ------- ------- -----------------------
|
||||
[32m Service ID [39m [32m attr1 [39m [32m attr2 [39m [32m attr3 [39m [32m Class name [39m
|
||||
-------------- ------- ------- ------- -----------------------
|
||||
definition_2 val1 val2 Full\Qualified\Class2
|
||||
" val3
|
||||
-------------- ------- ------- ------- -----------------------
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<container>
|
||||
<definition id="definition_2" class="Full\Qualified\Class2" public="false" synthetic="true" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="/path/to/file">
|
||||
<factory service="factory.service" method="get"/>
|
||||
<calls>
|
||||
<call method="setMailer"/>
|
||||
</calls>
|
||||
<tags>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr1">val1</parameter>
|
||||
<parameter name="attr2">val2</parameter>
|
||||
</tag>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr3">val3</parameter>
|
||||
</tag>
|
||||
<tag name="tag2"/>
|
||||
</tags>
|
||||
</definition>
|
||||
</container>
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"tag1": [
|
||||
{
|
||||
"class": "Full\\Qualified\\Class2",
|
||||
"public": false,
|
||||
"synthetic": true,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": "\/path\/to\/file",
|
||||
"factory_service": "factory.service",
|
||||
"factory_method": "get",
|
||||
"calls": [
|
||||
"setMailer"
|
||||
]
|
||||
}
|
||||
],
|
||||
"tag2": [
|
||||
{
|
||||
"class": "Full\\Qualified\\Class2",
|
||||
"public": false,
|
||||
"synthetic": true,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": "\/path\/to\/file",
|
||||
"factory_service": "factory.service",
|
||||
"factory_method": "get",
|
||||
"calls": [
|
||||
"setMailer"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
Container tags
|
||||
==============
|
||||
|
||||
tag1
|
||||
----
|
||||
|
||||
### definition_2
|
||||
|
||||
- Class: `Full\Qualified\Class2`
|
||||
- Public: no
|
||||
- Synthetic: yes
|
||||
- Lazy: no
|
||||
- Shared: yes
|
||||
- Abstract: no
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- File: `/path/to/file`
|
||||
- Factory Service: `factory.service`
|
||||
- Factory Method: `get`
|
||||
- Call: `setMailer`
|
||||
|
||||
|
||||
tag2
|
||||
----
|
||||
|
||||
### definition_2
|
||||
|
||||
- Class: `Full\Qualified\Class2`
|
||||
- Public: no
|
||||
- Synthetic: yes
|
||||
- Lazy: no
|
||||
- Shared: yes
|
||||
- Abstract: no
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- File: `/path/to/file`
|
||||
- Factory Service: `factory.service`
|
||||
- Factory Method: `get`
|
||||
- Call: `setMailer`
|
||||
@@ -0,0 +1,14 @@
|
||||
|
||||
[33mSymfony Container Public and Private Tags[39m
|
||||
[33m=========================================[39m
|
||||
|
||||
[33m"tag1" tag[39m
|
||||
[33m----------[39m
|
||||
|
||||
* definition_2
|
||||
|
||||
[33m"tag2" tag[39m
|
||||
[33m----------[39m
|
||||
|
||||
* definition_2
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<container>
|
||||
<tag name="tag1">
|
||||
<definition id="definition_2" class="Full\Qualified\Class2" public="false" synthetic="true" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="/path/to/file">
|
||||
<factory service="factory.service" method="get"/>
|
||||
<calls>
|
||||
<call method="setMailer"/>
|
||||
</calls>
|
||||
</definition>
|
||||
</tag>
|
||||
<tag name="tag2">
|
||||
<definition id="definition_2" class="Full\Qualified\Class2" public="false" synthetic="true" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="/path/to/file">
|
||||
<factory service="factory.service" method="get"/>
|
||||
<calls>
|
||||
<call method="setMailer"/>
|
||||
</calls>
|
||||
</definition>
|
||||
</tag>
|
||||
</container>
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"type": "function",
|
||||
"name": "array_key_exists"
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
- Type: `function`
|
||||
- Name: `array_key_exists`
|
||||
@@ -0,0 +1 @@
|
||||
array_key_exists()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="function" name="array_key_exists"/>
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "function",
|
||||
"name": "staticMethod",
|
||||
"class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass",
|
||||
"static": true
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
|
||||
- Type: `function`
|
||||
- Name: `staticMethod`
|
||||
- Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass`
|
||||
- Static: yes
|
||||
@@ -0,0 +1 @@
|
||||
Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::staticMethod()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="function" name="staticMethod" class="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass" static="true"/>
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"type": "function",
|
||||
"name": "method",
|
||||
"class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass"
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
|
||||
- Type: `function`
|
||||
- Name: `method`
|
||||
- Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass`
|
||||
@@ -0,0 +1 @@
|
||||
Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::method()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="function" name="method" class="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass"/>
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "function",
|
||||
"name": "staticMethod",
|
||||
"class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass",
|
||||
"static": true
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
|
||||
- Type: `function`
|
||||
- Name: `staticMethod`
|
||||
- Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass`
|
||||
- Static: yes
|
||||
@@ -0,0 +1 @@
|
||||
Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::staticMethod()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="function" name="staticMethod" class="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass" static="true"/>
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "function",
|
||||
"name": "staticMethod",
|
||||
"class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\ExtendedCallableClass",
|
||||
"static": true,
|
||||
"parent": true
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
|
||||
- Type: `function`
|
||||
- Name: `staticMethod`
|
||||
- Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\ExtendedCallableClass`
|
||||
- Static: yes
|
||||
- Parent: yes
|
||||
@@ -0,0 +1 @@
|
||||
Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\ExtendedCallableClass::parent::staticMethod()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="function" name="staticMethod" class="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\ExtendedCallableClass" static="true" parent="true"/>
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"type": "closure"
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
|
||||
- Type: `closure`
|
||||
@@ -0,0 +1 @@
|
||||
Closure()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="closure"/>
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"type": "object",
|
||||
"name": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass"
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
- Type: `object`
|
||||
- Name: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass`
|
||||
@@ -0,0 +1 @@
|
||||
Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::__invoke()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="object" name="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass"/>
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"type": "closure",
|
||||
"name": "__invoke",
|
||||
"class": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass"
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
|
||||
- Type: `closure`
|
||||
- Name: `__invoke`
|
||||
- Class: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass`
|
||||
@@ -0,0 +1 @@
|
||||
Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::__invoke()
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<callable type="closure" name="__invoke" class="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass"/>
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"class": "Full\\Qualified\\Class1",
|
||||
"public": true,
|
||||
"synthetic": false,
|
||||
"lazy": true,
|
||||
"shared": true,
|
||||
"abstract": true,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": null,
|
||||
"factory_class": "Full\\Qualified\\FactoryClass",
|
||||
"factory_method": "get",
|
||||
"tags": []
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
- Class: `Full\Qualified\Class1`
|
||||
- Public: yes
|
||||
- Synthetic: no
|
||||
- Lazy: yes
|
||||
- Shared: yes
|
||||
- Abstract: yes
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- Factory Class: `Full\Qualified\FactoryClass`
|
||||
- Factory Method: `get`
|
||||
@@ -0,0 +1,17 @@
|
||||
---------------- -----------------------------
|
||||
[32m Option [39m [32m Value [39m
|
||||
---------------- -----------------------------
|
||||
Service ID -
|
||||
Class Full\Qualified\Class1
|
||||
Tags -
|
||||
Public yes
|
||||
Synthetic no
|
||||
Lazy yes
|
||||
Shared yes
|
||||
Abstract yes
|
||||
Autowired no
|
||||
Autoconfigured no
|
||||
Factory Class Full\Qualified\FactoryClass
|
||||
Factory Method get
|
||||
---------------- -----------------------------
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<definition class="Full\Qualified\Class1" public="true" synthetic="false" lazy="true" shared="true" abstract="true" autowired="false" autoconfigured="false" file="">
|
||||
<factory class="Full\Qualified\FactoryClass" method="get"/>
|
||||
</definition>
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"class": "Full\\Qualified\\Class2",
|
||||
"public": false,
|
||||
"synthetic": true,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"file": "\/path\/to\/file",
|
||||
"factory_service": "factory.service",
|
||||
"factory_method": "get",
|
||||
"calls": [
|
||||
"setMailer"
|
||||
],
|
||||
"tags": [
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr1": "val1",
|
||||
"attr2": "val2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr3": "val3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag2",
|
||||
"parameters": []
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
- Class: `Full\Qualified\Class2`
|
||||
- Public: no
|
||||
- Synthetic: yes
|
||||
- Lazy: no
|
||||
- Shared: yes
|
||||
- Abstract: no
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- File: `/path/to/file`
|
||||
- Factory Service: `factory.service`
|
||||
- Factory Method: `get`
|
||||
- Call: `setMailer`
|
||||
- Tag: `tag1`
|
||||
- Attr1: val1
|
||||
- Attr2: val2
|
||||
- Tag: `tag1`
|
||||
- Attr3: val3
|
||||
- Tag: `tag2`
|
||||
@@ -0,0 +1,21 @@
|
||||
----------------- ---------------------------------
|
||||
[32m Option [39m [32m Value [39m
|
||||
----------------- ---------------------------------
|
||||
Service ID -
|
||||
Class Full\Qualified\Class2
|
||||
[39;49m Tags tag1 ([39;49m[32mattr1[39m[39;49m: val1, [39;49m[32mattr2[39m[39;49m: val2)[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49m[39;49mtag1 ([39;49m[32mattr3[39m[39;49m: val3)[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49mtag2
|
||||
Calls setMailer
|
||||
Public no
|
||||
Synthetic yes
|
||||
Lazy no
|
||||
Shared yes
|
||||
Abstract no
|
||||
Autowired no
|
||||
Autoconfigured no
|
||||
Required File /path/to/file
|
||||
Factory Service factory.service
|
||||
Factory Method get
|
||||
----------------- ---------------------------------
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<definition class="Full\Qualified\Class2" public="false" synthetic="true" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="/path/to/file">
|
||||
<factory service="factory.service" method="get"/>
|
||||
<calls>
|
||||
<call method="setMailer"/>
|
||||
</calls>
|
||||
<tags>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr1">val1</parameter>
|
||||
<parameter name="attr2">val2</parameter>
|
||||
</tag>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr3">val3</parameter>
|
||||
</tag>
|
||||
<tag name="tag2"/>
|
||||
</tags>
|
||||
</definition>
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"class": "Full\\Qualified\\Class1",
|
||||
"public": true,
|
||||
"synthetic": false,
|
||||
"lazy": true,
|
||||
"shared": true,
|
||||
"abstract": true,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"arguments": [
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition2"
|
||||
},
|
||||
"%parameter%",
|
||||
{
|
||||
"class": "inline_service",
|
||||
"public": false,
|
||||
"synthetic": false,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"arguments": [
|
||||
"arg1",
|
||||
"arg2"
|
||||
],
|
||||
"file": null,
|
||||
"tags": []
|
||||
},
|
||||
[
|
||||
"foo",
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition2"
|
||||
},
|
||||
{
|
||||
"class": "inline_service",
|
||||
"public": false,
|
||||
"synthetic": false,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"arguments": [],
|
||||
"file": null,
|
||||
"tags": []
|
||||
}
|
||||
],
|
||||
[
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition_1"
|
||||
},
|
||||
{
|
||||
"type": "service",
|
||||
"id": "definition_2"
|
||||
}
|
||||
]
|
||||
],
|
||||
"file": null,
|
||||
"factory_class": "Full\\Qualified\\FactoryClass",
|
||||
"factory_method": "get",
|
||||
"tags": []
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
- Class: `Full\Qualified\Class1`
|
||||
- Public: yes
|
||||
- Synthetic: no
|
||||
- Lazy: yes
|
||||
- Shared: yes
|
||||
- Abstract: yes
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- Arguments: yes
|
||||
- Factory Class: `Full\Qualified\FactoryClass`
|
||||
- Factory Method: `get`
|
||||
@@ -0,0 +1,22 @@
|
||||
---------------- -----------------------------
|
||||
[32m Option [39m [32m Value [39m
|
||||
---------------- -----------------------------
|
||||
Service ID -
|
||||
Class Full\Qualified\Class1
|
||||
Tags -
|
||||
Public yes
|
||||
Synthetic no
|
||||
Lazy yes
|
||||
Shared yes
|
||||
Abstract yes
|
||||
Autowired no
|
||||
Autoconfigured no
|
||||
Factory Class Full\Qualified\FactoryClass
|
||||
Factory Method get
|
||||
[39;49m Arguments Service(definition2)[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49m[39;49m%parameter%[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49m[39;49mInlined Service[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49m[39;49mArray (3 element(s))[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49mIterator (2 element(s))
|
||||
---------------- -----------------------------
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<definition class="Full\Qualified\Class1" public="true" synthetic="false" lazy="true" shared="true" abstract="true" autowired="false" autoconfigured="false" file="">
|
||||
<factory class="Full\Qualified\FactoryClass" method="get"/>
|
||||
<argument type="service" id="definition2"/>
|
||||
<argument>%parameter%</argument>
|
||||
<argument>
|
||||
<definition class="inline_service" public="false" synthetic="false" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="">
|
||||
<argument>arg1</argument>
|
||||
<argument>arg2</argument>
|
||||
</definition>
|
||||
</argument>
|
||||
<argument type="collection">
|
||||
<argument>foo</argument>
|
||||
<argument type="service" id="definition2"/>
|
||||
<argument>
|
||||
<definition class="inline_service" public="false" synthetic="false" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file=""/>
|
||||
</argument>
|
||||
</argument>
|
||||
<argument type="iterator">
|
||||
<argument type="service" id="definition_1"/>
|
||||
<argument type="service" id="definition_2"/>
|
||||
</argument>
|
||||
</definition>
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"class": "Full\\Qualified\\Class2",
|
||||
"public": false,
|
||||
"synthetic": true,
|
||||
"lazy": false,
|
||||
"shared": true,
|
||||
"abstract": false,
|
||||
"autowire": false,
|
||||
"autoconfigure": false,
|
||||
"arguments": [],
|
||||
"file": "\/path\/to\/file",
|
||||
"factory_service": "factory.service",
|
||||
"factory_method": "get",
|
||||
"calls": [
|
||||
"setMailer"
|
||||
],
|
||||
"tags": [
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr1": "val1",
|
||||
"attr2": "val2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag1",
|
||||
"parameters": {
|
||||
"attr3": "val3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tag2",
|
||||
"parameters": []
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
- Class: `Full\Qualified\Class2`
|
||||
- Public: no
|
||||
- Synthetic: yes
|
||||
- Lazy: no
|
||||
- Shared: yes
|
||||
- Abstract: no
|
||||
- Autowired: no
|
||||
- Autoconfigured: no
|
||||
- Arguments: no
|
||||
- File: `/path/to/file`
|
||||
- Factory Service: `factory.service`
|
||||
- Factory Method: `get`
|
||||
- Call: `setMailer`
|
||||
- Tag: `tag1`
|
||||
- Attr1: val1
|
||||
- Attr2: val2
|
||||
- Tag: `tag1`
|
||||
- Attr3: val3
|
||||
- Tag: `tag2`
|
||||
@@ -0,0 +1,21 @@
|
||||
----------------- ---------------------------------
|
||||
[32m Option [39m [32m Value [39m
|
||||
----------------- ---------------------------------
|
||||
Service ID -
|
||||
Class Full\Qualified\Class2
|
||||
[39;49m Tags tag1 ([39;49m[32mattr1[39m[39;49m: val1, [39;49m[32mattr2[39m[39;49m: val2)[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49m[39;49mtag1 ([39;49m[32mattr3[39m[39;49m: val3)[39;49m[39;49m [39;49m
|
||||
[39;49m [39;49mtag2
|
||||
Calls setMailer
|
||||
Public no
|
||||
Synthetic yes
|
||||
Lazy no
|
||||
Shared yes
|
||||
Abstract no
|
||||
Autowired no
|
||||
Autoconfigured no
|
||||
Required File /path/to/file
|
||||
Factory Service factory.service
|
||||
Factory Method get
|
||||
----------------- ---------------------------------
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<definition class="Full\Qualified\Class2" public="false" synthetic="true" lazy="false" shared="true" abstract="false" autowired="false" autoconfigured="false" file="/path/to/file">
|
||||
<factory service="factory.service" method="get"/>
|
||||
<calls>
|
||||
<call method="setMailer"/>
|
||||
</calls>
|
||||
<tags>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr1">val1</parameter>
|
||||
<parameter name="attr2">val2</parameter>
|
||||
</tag>
|
||||
<tag name="tag1">
|
||||
<parameter name="attr3">val3</parameter>
|
||||
</tag>
|
||||
<tag name="tag2"/>
|
||||
</tags>
|
||||
</definition>
|
||||
@@ -0,0 +1,11 @@
|
||||
[
|
||||
{
|
||||
"type": "function",
|
||||
"name": "global_function",
|
||||
"priority": 255
|
||||
},
|
||||
{
|
||||
"type": "closure",
|
||||
"priority": -1
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,12 @@
|
||||
# Registered listeners for event `event1` ordered by descending priority
|
||||
|
||||
## Listener 1
|
||||
|
||||
- Type: `function`
|
||||
- Name: `global_function`
|
||||
- Priority: `255`
|
||||
|
||||
## Listener 2
|
||||
|
||||
- Type: `closure`
|
||||
- Priority: `-1`
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
[33mRegistered Listeners for "event1" Event[39m
|
||||
[33m=======================================[39m
|
||||
|
||||
------- ------------------- ----------
|
||||
[32m Order [39m [32m Callable [39m [32m Priority [39m
|
||||
------- ------------------- ----------
|
||||
#1 global_function() 255
|
||||
#2 Closure() -1
|
||||
------- ------------------- ----------
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<event-dispatcher>
|
||||
<callable type="function" name="global_function" priority="255"/>
|
||||
<callable type="closure" priority="-1"/>
|
||||
</event-dispatcher>
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"event1": [
|
||||
{
|
||||
"type": "function",
|
||||
"name": "global_function",
|
||||
"priority": 255
|
||||
},
|
||||
{
|
||||
"type": "closure",
|
||||
"priority": -1
|
||||
}
|
||||
],
|
||||
"event2": [
|
||||
{
|
||||
"type": "object",
|
||||
"name": "Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass",
|
||||
"priority": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
# Registered listeners
|
||||
|
||||
## event1
|
||||
|
||||
### Listener 1
|
||||
|
||||
- Type: `function`
|
||||
- Name: `global_function`
|
||||
- Priority: `255`
|
||||
|
||||
### Listener 2
|
||||
|
||||
- Type: `closure`
|
||||
- Priority: `-1`
|
||||
|
||||
## event2
|
||||
|
||||
### Listener 1
|
||||
|
||||
- Type: `object`
|
||||
- Name: `Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass`
|
||||
- Priority: `0`
|
||||
@@ -0,0 +1,23 @@
|
||||
|
||||
[33mRegistered Listeners Grouped by Event[39m
|
||||
[33m=====================================[39m
|
||||
|
||||
[33m"event1" event[39m
|
||||
[33m--------------[39m
|
||||
|
||||
------- ------------------- ----------
|
||||
[32m Order [39m [32m Callable [39m [32m Priority [39m
|
||||
------- ------------------- ----------
|
||||
#1 global_function() 255
|
||||
#2 Closure() -1
|
||||
------- ------------------- ----------
|
||||
|
||||
[33m"event2" event[39m
|
||||
[33m--------------[39m
|
||||
|
||||
------- ----------------------------------------------------------------------------------- ----------
|
||||
[32m Order [39m [32m Callable [39m [32m Priority [39m
|
||||
------- ----------------------------------------------------------------------------------- ----------
|
||||
#1 Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass::__invoke() 0
|
||||
------- ----------------------------------------------------------------------------------- ----------
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<event-dispatcher>
|
||||
<event name="event1">
|
||||
<callable type="function" name="global_function" priority="255"/>
|
||||
<callable type="closure" priority="-1"/>
|
||||
</event>
|
||||
<event name="event2">
|
||||
<callable type="object" name="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\CallableClass" priority="0"/>
|
||||
</event>
|
||||
</event-dispatcher>
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"database_name": "symfony"
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
database_name
|
||||
=============
|
||||
|
||||
symfony
|
||||
@@ -0,0 +1,6 @@
|
||||
--------------- ---------
|
||||
[32m Parameter [39m [32m Value [39m
|
||||
--------------- ---------
|
||||
database_name symfony
|
||||
--------------- ---------
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<parameter key="database_name">symfony</parameter>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user