Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Commit

Permalink
Mark all services private
Browse files Browse the repository at this point in the history
  • Loading branch information
picodexter committed May 27, 2017
1 parent 8823877 commit b766ebc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Resources/config/services.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,25 @@

<services>
<service id="pcdx_parameter_encryption_defuse.encryption.decrypter.defuse_php_encryption"
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Decrypter\DefusePhpEncryptionDecrypter">
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Decrypter\DefusePhpEncryptionDecrypter"
public="false">
<argument type="service" id="pcdx_parameter_encryption_defuse.encryption.defuse_php_encryption.crypto_proxy" />
<argument type="service" id="pcdx_parameter_encryption_defuse.encryption.defuse_php_encryption.key_proxy" />
</service>

<service id="pcdx_parameter_encryption_defuse.encryption.defuse_php_encryption.crypto_proxy"
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Algorithm\DefusePhpEncryption\CryptoProxy">
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Algorithm\DefusePhpEncryption\CryptoProxy"
public="false">
</service>

<service id="pcdx_parameter_encryption_defuse.encryption.defuse_php_encryption.key_proxy"
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Algorithm\DefusePhpEncryption\KeyProxy">
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Algorithm\DefusePhpEncryption\KeyProxy"
public="false">
</service>

<service id="pcdx_parameter_encryption_defuse.encryption.encrypter.defuse_php_encryption"
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Encrypter\DefusePhpEncryptionEncrypter">
class="Picodexter\ParameterEncryptionDefuseBundle\Encryption\Encrypter\DefusePhpEncryptionEncrypter"
public="false">
<argument type="service" id="pcdx_parameter_encryption_defuse.encryption.defuse_php_encryption.crypto_proxy" />
<argument type="service" id="pcdx_parameter_encryption_defuse.encryption.defuse_php_encryption.key_proxy" />
</service>
Expand Down

0 comments on commit b766ebc

Please sign in to comment.