mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
Initial commit
This commit is contained in:
commit
28c8a3f0ba
136 changed files with 13350 additions and 0 deletions
11
lib/GitCommit.php
Normal file
11
lib/GitCommit.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?
|
||||
class GitCommit{
|
||||
public $Timestamp;
|
||||
public $Message;
|
||||
|
||||
public function __construct(string $unixTimestamp, string $message){
|
||||
$this->Timestamp = new \DateTimeImmutable('@' . $unixTimestamp);
|
||||
$this->Message = $message;
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue