Skip to content

Commit

Permalink
Update Precision.php
Browse files Browse the repository at this point in the history
Revert previous commit
  • Loading branch information
Nielsvanpach authored Oct 3, 2022
1 parent d6955a9 commit 83fca44
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Precision.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

class Precision
{
public const YEAR = 0b100000;
public const MONTH = 0b110000;
public const DAY = 0b111000;
public const HOUR = 0b111100;
public const MINUTE = 0b111110;
public const SECOND = 0b111111;
private const YEAR = 0b100000;
private const MONTH = 0b110000;
private const DAY = 0b111000;
private const HOUR = 0b111100;
private const MINUTE = 0b111110;
private const SECOND = 0b111111;

/**
* @return self[]
Expand Down

0 comments on commit 83fca44

Please sign in to comment.