|
6 | 6 |
|
7 | 7 | <prototype namespace="Magento\CloudPatches\" resource="../src/*" exclude="../src/{Test}"/>
|
8 | 8 |
|
| 9 | + <service id="Psr\Log\LoggerInterface" alias="Magento\CloudPatches\App\Logger" /> |
9 | 10 | <service id="Magento\CloudPatches\App\Container" autowire="false"/>
|
10 | 11 | <service id="Magento\CloudPatches\Filesystem\DirectoryList" autowire="false"/>
|
| 12 | + <service id="Magento\QualityPatches\Info"/> |
| 13 | + <service id="Symfony\Component\Console\Helper\QuestionHelper"/> |
11 | 14 | <service id="Composer\Composer"/>
|
12 | 15 | <service id="Magento\CloudPatches\App\GenericException" autowire="false"/>
|
13 |
| - <service id="Magento\CloudPatches\Command\Patch\ManagerException" autowire="false"/> |
| 16 | + <service id="Magento\CloudPatches\App\RuntimeException" autowire="false"/> |
| 17 | + <service id="Magento\CloudPatches\Filesystem\FileSystemException" autowire="false"/> |
| 18 | + <service id="Magento\CloudPatches\Patch\SourceProviderException" autowire="false"/> |
| 19 | + <service id="Magento\CloudPatches\Patch\Collector\CollectorException" autowire="false"/> |
| 20 | + <service id="Magento\CloudPatches\Patch\Status\StatusResolverException" autowire="false"/> |
| 21 | + <service id="Magento\CloudPatches\Patch\PatchIntegrityException" autowire="false"/> |
| 22 | + <service id="Magento\CloudPatches\Patch\Pool\PatchNotFoundException" autowire="false"/> |
14 | 23 | <service id="Magento\CloudPatches\Patch\ApplierException" autowire="false"/>
|
15 |
| - <service id="Magento\CloudPatches\Filesystem\FileNotFoundException" autowire="false"/> |
16 | 24 | <service id="Magento\CloudPatches\Shell\PackageNotFoundException" autowire="false"/>
|
| 25 | + <service id="Magento\CloudPatches\Patch\Data\Patch" autowire="false"/> |
| 26 | + <service id="Magento\CloudPatches\Patch\Data\AggregatedPatch" autowire="false"/> |
| 27 | + <service id="Magento\CloudPatches\Patch\Pool\OptionalPool" lazy="true" /> |
| 28 | + <service id="Magento\CloudPatches\Patch\Pool\RequiredPool" lazy="true"/> |
| 29 | + <service id="Magento\CloudPatches\Patch\Pool\LocalPool" lazy="true"/> |
| 30 | + <service id="Magento\CloudPatches\Patch\Status\StatusPool" autowire="false"/> |
| 31 | + <service id="statusOptionalPool" class="Magento\CloudPatches\Patch\Status\StatusPool" lazy="true"> |
| 32 | + <argument key="$resolvers" type="collection"> |
| 33 | + <argument type="service" id="Magento\CloudPatches\Patch\Status\OptionalResolver"/> |
| 34 | + </argument> |
| 35 | + </service> |
| 36 | + <service id="statusPool" class="Magento\CloudPatches\Patch\Status\StatusPool" lazy="true"> |
| 37 | + <argument key="$resolvers" type="collection"> |
| 38 | + <argument type="service" id="Magento\CloudPatches\Patch\Status\LocalResolver"/> |
| 39 | + <argument type="service" id="Magento\CloudPatches\Patch\Status\OptionalResolver"/> |
| 40 | + </argument> |
| 41 | + </service> |
| 42 | + <service id="Magento\CloudPatches\Command\Process\ShowStatus"> |
| 43 | + <argument key="$statusPool" type="service" id="statusPool"/> |
| 44 | + </service> |
| 45 | + <service id="Magento\CloudPatches\Command\Process\Action\ApplyOptionalAction"> |
| 46 | + <argument key="$statusPool" type="service" id="statusOptionalPool"/> |
| 47 | + </service> |
| 48 | + <service id="Magento\CloudPatches\Command\Process\Action\RevertAction"> |
| 49 | + <argument key="$statusPool" type="service" id="statusOptionalPool"/> |
| 50 | + </service> |
| 51 | + <service id="Magento\CloudPatches\Command\Process\Action\ConfirmRequiredAction"> |
| 52 | + <argument key="$statusPool" type="service" id="statusOptionalPool"/> |
| 53 | + </service> |
| 54 | + <service id="Magento\CloudPatches\Command\Process\Action\ProcessDeprecatedAction"> |
| 55 | + <argument key="$statusPool" type="service" id="statusOptionalPool"/> |
| 56 | + </service> |
| 57 | + <service id="Magento\CloudPatches\Command\Process\Action\ReviewAppliedAction"> |
| 58 | + <argument key="$statusPool" type="service" id="statusOptionalPool"/> |
| 59 | + </service> |
| 60 | + <service id="Magento\CloudPatches\Patch\RevertValidator"> |
| 61 | + <argument key="$statusPool" type="service" id="statusOptionalPool"/> |
| 62 | + </service> |
| 63 | + <service id="Magento\CloudPatches\Command\Process\Renderer"> |
| 64 | + <argument key="$statusPool" type="service" id="statusOptionalPool"/> |
| 65 | + </service> |
| 66 | + <service id="Magento\CloudPatches\Command\Process\Action\ActionPool" autowire="false"/> |
| 67 | + <service id="ApplyOptionalActionPool" class="Magento\CloudPatches\Command\Process\Action\ActionPool"> |
| 68 | + <argument key="$actions" type="collection"> |
| 69 | + <argument type="service" id="Magento\CloudPatches\Command\Process\Action\ReviewAppliedAction"/> |
| 70 | + <argument type="service" id="Magento\CloudPatches\Command\Process\Action\ConfirmRequiredAction"/> |
| 71 | + <argument type="service" id="Magento\CloudPatches\Command\Process\Action\ProcessDeprecatedAction"/> |
| 72 | + <argument type="service" id="Magento\CloudPatches\Command\Process\Action\ApplyOptionalAction"/> |
| 73 | + </argument> |
| 74 | + </service> |
| 75 | + <service id="Magento\CloudPatches\Command\Process\ApplyOptional"> |
| 76 | + <argument key="$actionPool" type="service" id="ApplyOptionalActionPool"/> |
| 77 | + </service> |
| 78 | + <service id="Magento\CloudPatches\Patch\PatchBuilder" shared="false"/> |
17 | 79 | </services>
|
18 | 80 | </container>
|
0 commit comments