We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6fbfa5 commit c017e71Copy full SHA for c017e71
1 file changed
certificationy.php
@@ -19,7 +19,10 @@
19
use Symfony\Component\Console\Application;
20
use Symfony\Component\Yaml\Yaml;
21
22
-$application = new Application('certificationy-cli', '1.3');
+const VERSION = 1.4;
23
+const APPLICATION_NAME = 'Certificationy';
24
+
25
+$application = new Application(self::APPLICATION_NAME, self::VERSION);
26
27
$config = Yaml::parse(file_get_contents('config.yml'));
28
$updateCommand = new Command('self-update');
0 commit comments