11 lines
No EOL
142 B
PHP
11 lines
No EOL
142 B
PHP
<?php
|
|
|
|
class line_style
|
|
{
|
|
function line_style($on, $off)
|
|
{
|
|
$this->style = "dash";
|
|
$this->on = $on;
|
|
$this->off = $off;
|
|
}
|
|
} |