From 26eb9170f7d45f9267046ff6896b0f787a88b6db Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 24 Oct 2019 16:58:52 -0400 Subject: [PATCH] Add Syntax class, from step 157 --- src/Syntax.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Syntax.php diff --git a/src/Syntax.php b/src/Syntax.php new file mode 100644 index 0000000..ed51492 --- /dev/null +++ b/src/Syntax.php @@ -0,0 +1,24 @@ +filetype = $name; + $self->filematch = $extList; + $self->flags = $flags; + + return $self; + } + + private function __construct() {} +} \ No newline at end of file