-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest
More file actions
25 lines (21 loc) · 792 Bytes
/
test
File metadata and controls
25 lines (21 loc) · 792 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
#!/usr/bin/env php
<?php
use Ofcold\Constellation\CalculatorConstellation;
require __DIR__ . '/vendor/autoload.php';
$collect = [
CalculatorConstellation::make('1992-01-02'),
CalculatorConstellation::make('1992-02-02'),
CalculatorConstellation::make('1992-03-02'),
CalculatorConstellation::make('1992-04-02'),
CalculatorConstellation::make('1995-05-20'),
CalculatorConstellation::make('1995-06-20'),
CalculatorConstellation::make('1995-07-20'),
CalculatorConstellation::make('1995-08-20'),
CalculatorConstellation::make('1995-09-20'),
CalculatorConstellation::make('1995-10-20'),
CalculatorConstellation::make('1995-11-20'),
CalculatorConstellation::make('1995-12-20'),
];
foreach ($collect as $entry) {
echo $entry->name() . "\r\n";
}