Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Commit

Permalink
Just added quotes to scalar values (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
yamilovs authored and Nyholm committed Nov 18, 2016
1 parent e50f4eb commit 07bad5b
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,35 @@ services:
dizda.cloudbackup.client.cloudapp:
class: Dizda\CloudBackupBundle\Client\CloudAppClient
arguments:
- %dizda_cloud_backup.cloud_storages%
- '%dizda_cloud_backup.cloud_storages%'
tags:
- { name: dizda.cloudbackup.client }

dizda.cloudbackup.client.dropbox:
class: Dizda\CloudBackupBundle\Client\DropboxClient
arguments:
- %dizda_cloud_backup.cloud_storages%
- '%dizda_cloud_backup.cloud_storages%'
tags:
- { name: dizda.cloudbackup.client }

dizda.cloudbackup.client.local:
class: Dizda\CloudBackupBundle\Client\LocalClient
arguments:
- %dizda_cloud_backup.cloud_storages%
- '%dizda_cloud_backup.cloud_storages%'
tags:
- { name: dizda.cloudbackup.client }

dizda.cloudbackup.client.dropbox_sdk:
class: Dizda\CloudBackupBundle\Client\DropboxSdkClient
arguments:
- %dizda_cloud_backup.cloud_storages%
- '%dizda_cloud_backup.cloud_storages%'
tags:
- { name: dizda.cloudbackup.client }

dizda.cloudbackup.client.google_drive:
class: Dizda\CloudBackupBundle\Client\GoogleDriveClient
public: false
arguments: [~, ~, ~, %dizda.cloudbackup.google_drive.timeout%]
arguments: [~, ~, ~, '%dizda.cloudbackup.google_drive.timeout%']
tags:
- { name: dizda.cloudbackup.client }

Expand All @@ -60,30 +60,30 @@ services:
dizda.cloudbackup.database.mongodb:
class: Dizda\CloudBackupBundle\Database\MongoDB
arguments:
- %dizda_cloud_backup.databases%
- %dizda_cloud_backup.output_folder%
- '%dizda_cloud_backup.databases%'
- '%dizda_cloud_backup.output_folder%'
calls:
- [ setTimeout, [ %dizda_cloud_backup.timeout% ] ]
- [ setTimeout, [ '%dizda_cloud_backup.timeout%' ] ]
tags:
- { name: dizda.cloudbackup.database }

dizda.cloudbackup.database.mysql:
class: Dizda\CloudBackupBundle\Database\MySQL
arguments:
- %dizda_cloud_backup.databases%
- %dizda_cloud_backup.output_folder%
- '%dizda_cloud_backup.databases%'
- '%dizda_cloud_backup.output_folder%'
calls:
- [ setTimeout, [ %dizda_cloud_backup.timeout% ] ]
- [ setTimeout, [ '%dizda_cloud_backup.timeout%' ] ]
tags:
- { name: dizda.cloudbackup.database }

dizda.cloudbackup.database.postgresql:
class: Dizda\CloudBackupBundle\Database\PostgreSQL
arguments:
- %dizda_cloud_backup.databases%
- %dizda_cloud_backup.output_folder%
- '%dizda_cloud_backup.databases%'
- '%dizda_cloud_backup.output_folder%'
calls:
- [ setTimeout, [ %dizda_cloud_backup.timeout% ] ]
- [ setTimeout, [ '%dizda_cloud_backup.timeout%' ] ]
tags:
- { name: dizda.cloudbackup.database }

Expand Down Expand Up @@ -119,8 +119,8 @@ services:
dizda.cloudbackup.manager.processor:
class: Dizda\CloudBackupBundle\Manager\ProcessorManager
arguments:
- %dizda_cloud_backup.root_folder%
- %dizda_cloud_backup.output_folder%
- %dizda_cloud_backup.output_file_prefix%
- %dizda_cloud_backup.processor%
- %dizda_cloud_backup.folders%
- '%dizda_cloud_backup.root_folder%'
- '%dizda_cloud_backup.output_folder%'
- '%dizda_cloud_backup.output_file_prefix%'
- '%dizda_cloud_backup.processor%'
- '%dizda_cloud_backup.folders%'

5 comments on commit 07bad5b

@szepczynski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you create release 3.4.1 with these changes?

@Nyholm
Copy link
Collaborator

@Nyholm Nyholm commented on 07bad5b Dec 6, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

@szepczynski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot!

@DaiDucDaiUy
Copy link

@DaiDucDaiUy DaiDucDaiUy commented on 07bad5b Dec 9, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you supplement this option in the next update?
94c3c9643679479f835aba239479cc91

https://github.com/bachvtuan/Backup-To-Google-Drive

@Nyholm
Copy link
Collaborator

@Nyholm Nyholm commented on 07bad5b Dec 9, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure @DaiDucDaiUy. Create an issue with this feature request.

Please sign in to comment.