Forgot to run precommit!

This commit is contained in:
flash 2023-01-02 03:24:41 +00:00
parent 3f0504b1fd
commit 05a940667c
6 changed files with 21 additions and 2 deletions

View file

@ -1 +1 @@
0.2301.11953
0.2301.20324

View file

@ -1,8 +1,11 @@
<?php
// Colour.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour;
use Stringable;
abstract class Colour implements Stringable {
public abstract function getRed(): int;
public abstract function getGreen(): int;

View file

@ -1,4 +1,8 @@
<?php
// ColourHSL.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour;
class ColourHSL extends Colour {

View file

@ -1,4 +1,8 @@
<?php
// ColourNamed.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour;
class ColourNamed extends Colour {

View file

@ -1,4 +1,8 @@
<?php
// ColourNull.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour;
class ColourNull extends Colour {

View file

@ -1,4 +1,8 @@
<?php
// ColourRGB.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour;
class ColourRGB extends Colour {