Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
remy
jsonreader2
Commits
a543788e
Commit
a543788e
authored
Sep 15, 2021
by
remy
Browse files
missing class
parent
5d921e6b
Changes
1
Show whitespace changes
Inline
Side-by-side
model/Option.php
0 → 100644
View file @
a543788e
<?php
require_once
(
__DIR__
.
'/'
.
JSR_PATH
.
'/model/Model.php'
);
/**
* Option model
*/
class
Option
extends
Model
{
var
$name
=
""
;
var
$value
=
""
;
public
function
__construct
(
$name
,
$value
)
{
$this
->
name
=
$name
;
$this
->
value
=
$value
;
}
}
?>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment