Skip to content

Commit 5af5383

Browse files
committed
Make new consts private
1 parent 95078ae commit 5af5383

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

app/code/Magento/Email/Model/Transport.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,37 +41,37 @@ class Transport implements TransportInterface
4141
/**
4242
* Configuration path for custom Transport
4343
*/
44-
const XML_PATH_TRANSPORT = 'system/smtp/transport';
44+
private const XML_PATH_TRANSPORT = 'system/smtp/transport';
4545

4646
/**
4747
* Configuration path for SMTP Host
4848
*/
49-
const XML_PATH_HOST = 'system/smtp/host';
49+
private const XML_PATH_HOST = 'system/smtp/host';
5050

5151
/**
5252
* Configuration path for SMTP Port
5353
*/
54-
const XML_PATH_PORT = 'system/smtp/port';
54+
private const XML_PATH_PORT = 'system/smtp/port';
5555

5656
/**
5757
* Configuration path for SMTP Username
5858
*/
59-
const XML_PATH_USERNAME = 'system/smtp/username';
59+
private const XML_PATH_USERNAME = 'system/smtp/username';
6060

6161
/**
6262
* Configuration path for SMTP Password
6363
*/
64-
const XML_PATH_PASSWORD = 'system/smtp/password';
64+
private const XML_PATH_PASSWORD = 'system/smtp/password';
6565

6666
/**
6767
* Configuration path for SMTP Auth type
6868
*/
69-
const XML_PATH_AUTH = 'system/smtp/auth';
69+
private const XML_PATH_AUTH = 'system/smtp/auth';
7070

7171
/**
72-
* Configuration path for SMTP SSL
72+
* Configuration path for SMTP SSL value
7373
*/
74-
const XML_PATH_SSL = 'system/smtp/ssl';
74+
private const XML_PATH_SSL = 'system/smtp/ssl';
7575

7676
/**
7777
* Whether return path should be set or no.

0 commit comments

Comments
 (0)