-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathPHPJava.php
More file actions
28 lines (26 loc) · 799 Bytes
/
PHPJava.php
File metadata and controls
28 lines (26 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
declare(strict_types=1);
//
//
// $$$$$$$\ $$\ $$\ $$$$$$$\ $$$$$\
// $$ __$$\ $$ | $$ |$$ __$$\ \__$$ |
// $$ | $$ |$$ | $$ |$$ | $$ | $$ | $$$$$$\ $$\ $$\ $$$$$$\
// $$$$$$$ |$$$$$$$$ |$$$$$$$ | $$ | \____$$\\$$\ $$ |\____$$\
// $$ ____/ $$ __$$ |$$ ____/$$\ $$ | $$$$$$$ |\$$\$$ / $$$$$$$ |
// $$ | $$ | $$ |$$ | $$ | $$ |$$ __$$ | \$$$ / $$ __$$ |
// $$ | $$ | $$ |$$ | \$$$$$$ |\$$$$$$$ | \$ / \$$$$$$$ |
// \__| \__| \__|\__| \______/ \_______| \_/ \_______|
//
//
namespace PHPJava\Core;
final class PHPJava
{
/**
* The code name is based on language of flowers.
*/
const CODE_NAME = 'CHERRY_BLOSSOM';
/**
* As same as composer version.
*/
const VERSION = 0x000090;
}