diff --git a/code_samples/api/public_php_api/src/Command/AddLanguageCommand.php b/code_samples/api/public_php_api/src/Command/AddLanguageCommand.php index ce2826cc84..d734fa9841 100644 --- a/code_samples/api/public_php_api/src/Command/AddLanguageCommand.php +++ b/code_samples/api/public_php_api/src/Command/AddLanguageCommand.php @@ -10,7 +10,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:add_language', description: 'Lists available languages and add Polish.')] +#[AsCommand( + name: 'doc:add_language', + description: 'Lists available languages and add Polish.' +)] class AddLanguageCommand extends Command { private LanguageService $languageService; diff --git a/code_samples/api/public_php_api/src/Command/AddLocationToContentCommand.php b/code_samples/api/public_php_api/src/Command/AddLocationToContentCommand.php index 16277a58a0..79cf794d03 100644 --- a/code_samples/api/public_php_api/src/Command/AddLocationToContentCommand.php +++ b/code_samples/api/public_php_api/src/Command/AddLocationToContentCommand.php @@ -12,7 +12,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:add_location', description: 'Add a Location to content item and hides it.')] +#[AsCommand( + name: 'doc:add_location', + description: 'Add a Location to content item and hides it.' +)] class AddLocationToContentCommand extends Command { private ContentService $contentService; diff --git a/code_samples/api/public_php_api/src/Command/BrowseLocationsCommand.php b/code_samples/api/public_php_api/src/Command/BrowseLocationsCommand.php index d7da5b02ac..b6d7641184 100644 --- a/code_samples/api/public_php_api/src/Command/BrowseLocationsCommand.php +++ b/code_samples/api/public_php_api/src/Command/BrowseLocationsCommand.php @@ -10,7 +10,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:browse_locations', description: 'Lists all descendants of the Location')] +#[AsCommand( + name: 'doc:browse_locations', + description: 'Lists all descendants of the Location' +)] class BrowseLocationsCommand extends Command { private LocationService $locationService; diff --git a/code_samples/api/public_php_api/src/Command/CalendarCommand.php b/code_samples/api/public_php_api/src/Command/CalendarCommand.php index ae35627449..7bcaefea8d 100644 --- a/code_samples/api/public_php_api/src/Command/CalendarCommand.php +++ b/code_samples/api/public_php_api/src/Command/CalendarCommand.php @@ -12,7 +12,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:calendar', description: 'Lists Calendar event in the provided time range and reschedules them.')] +#[AsCommand( + name: 'doc:calendar', + description: 'Lists Calendar event in the provided time range and reschedules them.' +)] class CalendarCommand extends Command { private PermissionResolver $permissionResolver; diff --git a/code_samples/api/public_php_api/src/Command/FilterCommand.php b/code_samples/api/public_php_api/src/Command/FilterCommand.php index 9fea5c5210..a3abce7933 100644 --- a/code_samples/api/public_php_api/src/Command/FilterCommand.php +++ b/code_samples/api/public_php_api/src/Command/FilterCommand.php @@ -13,7 +13,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:filter', description: 'Returns children of the provided Location, sorted by name in descending order.')] +#[AsCommand( + name: 'doc:filter', + description: 'Returns children of the provided Location, sorted by name in descending order.' +)] class FilterCommand extends Command { private ContentService $contentService; diff --git a/code_samples/api/public_php_api/src/Command/FilterLocationCommand.php b/code_samples/api/public_php_api/src/Command/FilterLocationCommand.php index eca95826ad..3143fdcaad 100644 --- a/code_samples/api/public_php_api/src/Command/FilterLocationCommand.php +++ b/code_samples/api/public_php_api/src/Command/FilterLocationCommand.php @@ -13,7 +13,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:filter_location', description: 'Returns children of the provided Location, sorted by name in descending order.')] +#[AsCommand( + name: 'doc:filter_location', + description: 'Returns children of the provided Location, sorted by name in descending order.' +)] class FilterLocationCommand extends Command { private LocationService $locationService; diff --git a/code_samples/api/public_php_api/src/Command/FindComplexCommand.php b/code_samples/api/public_php_api/src/Command/FindComplexCommand.php index 9416b28f35..748c8d50c8 100644 --- a/code_samples/api/public_php_api/src/Command/FindComplexCommand.php +++ b/code_samples/api/public_php_api/src/Command/FindComplexCommand.php @@ -13,7 +13,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:find_complex', description: 'Lists content belonging to the provided content type.')] +#[AsCommand( + name: 'doc:find_complex', + description: 'Lists content belonging to the provided content type.' +)] class FindComplexCommand extends Command { private SearchService $searchService; diff --git a/code_samples/api/public_php_api/src/Command/FindContentCommand.php b/code_samples/api/public_php_api/src/Command/FindContentCommand.php index 41d988bafa..972bd1b295 100644 --- a/code_samples/api/public_php_api/src/Command/FindContentCommand.php +++ b/code_samples/api/public_php_api/src/Command/FindContentCommand.php @@ -11,7 +11,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:find_content', description: 'Lists content belonging to the provided content type.')] +#[AsCommand( + name: 'doc:find_content', + description: 'Lists content belonging to the provided content type.' +)] class FindContentCommand extends Command { private SearchService $searchService; diff --git a/code_samples/api/public_php_api/src/Command/FindInTrashCommand.php b/code_samples/api/public_php_api/src/Command/FindInTrashCommand.php index aaf6c01d1b..883b11e65d 100644 --- a/code_samples/api/public_php_api/src/Command/FindInTrashCommand.php +++ b/code_samples/api/public_php_api/src/Command/FindInTrashCommand.php @@ -10,7 +10,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:find_in_trash', description: 'Lists content in Trash belonging to the provided content type.')] +#[AsCommand( + name: 'doc:find_in_trash', + description: 'Lists content in Trash belonging to the provided content type.' +)] class FindInTrashCommand extends Command { private TrashService $trashService; diff --git a/code_samples/api/public_php_api/src/Command/FindUrlCommand.php b/code_samples/api/public_php_api/src/Command/FindUrlCommand.php index 952022c96c..b896f3acbe 100644 --- a/code_samples/api/public_php_api/src/Command/FindUrlCommand.php +++ b/code_samples/api/public_php_api/src/Command/FindUrlCommand.php @@ -13,7 +13,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:find_url', description: 'Finds all valid URLs in the provided Section.')] +#[AsCommand( + name: 'doc:find_url', + description: 'Finds all valid URLs in the provided Section.' +)] class FindUrlCommand extends Command { private URLService $urlService; diff --git a/code_samples/api/public_php_api/src/Command/FindWithAggregationCommand.php b/code_samples/api/public_php_api/src/Command/FindWithAggregationCommand.php index 9f6c672b99..f972de32a1 100644 --- a/code_samples/api/public_php_api/src/Command/FindWithAggregationCommand.php +++ b/code_samples/api/public_php_api/src/Command/FindWithAggregationCommand.php @@ -12,7 +12,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:find_with_aggregation', description: 'Counts content per content type and the value of Selection Field.')] +#[AsCommand( + name: 'doc:find_with_aggregation', + description: 'Counts content per content type and the value of Selection Field.' +)] class FindWithAggregationCommand extends Command { private SearchService $searchService; diff --git a/code_samples/api/public_php_api/src/Command/HideLocationCommand.php b/code_samples/api/public_php_api/src/Command/HideLocationCommand.php index 4dce2720e1..06cfae6ec6 100644 --- a/code_samples/api/public_php_api/src/Command/HideLocationCommand.php +++ b/code_samples/api/public_php_api/src/Command/HideLocationCommand.php @@ -11,7 +11,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:hide', description: 'Hides and reveals again selected Location.')] +#[AsCommand( + name: 'doc:hide', + description: 'Hides and reveals again selected Location.' +)] class HideLocationCommand extends Command { private LocationService $locationService; diff --git a/code_samples/api/public_php_api/src/Command/MoveContentCommand.php b/code_samples/api/public_php_api/src/Command/MoveContentCommand.php index f1443d3a5a..bdb5563aa2 100644 --- a/code_samples/api/public_php_api/src/Command/MoveContentCommand.php +++ b/code_samples/api/public_php_api/src/Command/MoveContentCommand.php @@ -11,7 +11,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:move_content', description: 'Moves the selected Location with its subtree.')] +#[AsCommand( + name: 'doc:move_content', + description: 'Moves the selected Location with its subtree.' +)] class MoveContentCommand extends Command { private LocationService $locationService; diff --git a/code_samples/api/public_php_api/src/Command/ObjectStateCommand.php b/code_samples/api/public_php_api/src/Command/ObjectStateCommand.php index 399b975007..1ede5c6d70 100644 --- a/code_samples/api/public_php_api/src/Command/ObjectStateCommand.php +++ b/code_samples/api/public_php_api/src/Command/ObjectStateCommand.php @@ -12,7 +12,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:object_state', description: 'Creates OS group with provided States and assigned the Lock OS to provided content item')] +#[AsCommand( + name: 'doc:object_state', + description: 'Creates OS group with provided States and assigned the Lock OS to provided content item' +)] class ObjectStateCommand extends Command { private ContentService $contentService; diff --git a/code_samples/api/public_php_api/src/Command/SectionCommand.php b/code_samples/api/public_php_api/src/Command/SectionCommand.php index fea19f5b04..9845064b76 100644 --- a/code_samples/api/public_php_api/src/Command/SectionCommand.php +++ b/code_samples/api/public_php_api/src/Command/SectionCommand.php @@ -15,7 +15,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:section', description: 'Creates new section and adds selected content item to it.')] +#[AsCommand( + name: 'doc:section', + description: 'Creates new section and adds selected content item to it.' +)] class SectionCommand extends Command { private SectionService $sectionService; diff --git a/code_samples/api/public_php_api/src/Command/SetMainLocationCommand.php b/code_samples/api/public_php_api/src/Command/SetMainLocationCommand.php index dd665062c7..af022123e3 100644 --- a/code_samples/api/public_php_api/src/Command/SetMainLocationCommand.php +++ b/code_samples/api/public_php_api/src/Command/SetMainLocationCommand.php @@ -11,7 +11,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:set_main_location', description: 'Set a Location as content item\'s main')] +#[AsCommand( + name: 'doc:set_main_location', + description: 'Set a Location as content item\'s main' +)] class SetMainLocationCommand extends Command { private ContentService $contentService; diff --git a/code_samples/api/public_php_api/src/Command/UpdateContentCommand.php b/code_samples/api/public_php_api/src/Command/UpdateContentCommand.php index f807bdf759..cfc3f1acc3 100644 --- a/code_samples/api/public_php_api/src/Command/UpdateContentCommand.php +++ b/code_samples/api/public_php_api/src/Command/UpdateContentCommand.php @@ -11,7 +11,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:update_content', description: 'Update provided content item with a new name')] +#[AsCommand( + name: 'doc:update_content', + description: 'Update provided content item with a new name' +)] class UpdateContentCommand extends Command { private ContentService $contentService; diff --git a/code_samples/api/public_php_api/src/Command/ViewContentCommand.php b/code_samples/api/public_php_api/src/Command/ViewContentCommand.php index bdfb99ed62..8e3673316b 100644 --- a/code_samples/api/public_php_api/src/Command/ViewContentCommand.php +++ b/code_samples/api/public_php_api/src/Command/ViewContentCommand.php @@ -11,7 +11,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:view_content', description: 'Output Field values on provided content item.')] +#[AsCommand( + name: 'doc:view_content', + description: 'Output Field values on provided content item.' +)] class ViewContentCommand extends Command { private ContentService $contentService; diff --git a/code_samples/api/public_php_api/src/Command/ViewContentMetaDataCommand.php b/code_samples/api/public_php_api/src/Command/ViewContentMetaDataCommand.php index 1ac31f8dcd..09d4cb1295 100644 --- a/code_samples/api/public_php_api/src/Command/ViewContentMetaDataCommand.php +++ b/code_samples/api/public_php_api/src/Command/ViewContentMetaDataCommand.php @@ -15,7 +15,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:view_metadata', description: 'Output various metadata about a content item.')] +#[AsCommand( + name: 'doc:view_metadata', + description: 'Output various metadata about a content item.' +)] class ViewContentMetaDataCommand extends Command { private ContentService $contentService; diff --git a/code_samples/api/public_php_api/src/Command/WorkflowCommand.php b/code_samples/api/public_php_api/src/Command/WorkflowCommand.php index 362ca64322..1a1c021fb7 100644 --- a/code_samples/api/public_php_api/src/Command/WorkflowCommand.php +++ b/code_samples/api/public_php_api/src/Command/WorkflowCommand.php @@ -11,7 +11,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:workflow', description: 'Starts content in the selected workflow and makes the provided transition.')] +#[AsCommand( + name: 'doc:workflow', + description: 'Starts content in the selected workflow and makes the provided transition.' +)] class WorkflowCommand extends Command { private WorkflowServiceInterface $workflowService; diff --git a/code_samples/back_office/dashboard/src/Command/DashboardCommand.php b/code_samples/back_office/dashboard/src/Command/DashboardCommand.php index 57a57ed107..e6cc95ba7b 100644 --- a/code_samples/back_office/dashboard/src/Command/DashboardCommand.php +++ b/code_samples/back_office/dashboard/src/Command/DashboardCommand.php @@ -14,7 +14,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'doc:dashboard', description: 'Set a custom dashboard to user group.')] +#[AsCommand( + name: 'doc:dashboard', + description: 'Set a custom dashboard to user group.' +)] class DashboardCommand extends Command { private DashboardServiceInterface $dashboardService; diff --git a/code_samples/front/render_content_in_php/src/Command/ViewCommand.php b/code_samples/front/render_content_in_php/src/Command/ViewCommand.php index d7b2d79f8f..4c1bf39616 100644 --- a/code_samples/front/render_content_in_php/src/Command/ViewCommand.php +++ b/code_samples/front/render_content_in_php/src/Command/ViewCommand.php @@ -10,7 +10,10 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; -#[AsCommand(name: 'app:view', description: 'Render the view of a content item')] +#[AsCommand( + name: 'app:view', + description: 'Render the view of a content item' +)] class ViewCommand extends Command { private ContentViewBuilder $contentViewBuilder;