We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f1917f commit 0a6b743Copy full SHA for 0a6b743
1 file changed
src/LdapSyncCommand.php
@@ -174,13 +174,13 @@ class LdapSyncCommand extends Command
174
*/
175
176
/** @var string User's configuration file name. */
177
- const CONFIG_FILE_NAME = "config.yml";
+ public const CONFIG_FILE_NAME = "config.yml";
178
179
/** @var string Distributed configuration file name. */
180
- const CONFIG_FILE_DIST_NAME = "config.yml.dist";
+ public const CONFIG_FILE_DIST_NAME = "config.yml.dist";
181
182
- /** @var int Wait this long (in microseconds) between Gitlab API calls to avoid flooding. */
183
- const API_COOL_DOWN_USECONDS = 100000;
+ /** @var non-negative-int Wait this long (in microseconds) between Gitlab API calls to avoid flooding. */
+ public const API_COOL_DOWN_USECONDS = 100000;
184
185
186
0 commit comments