11 lines
198 B
PHP
11 lines
198 B
PHP
<?php
|
|
|
|
class Kronolith_Stub_Driver extends Kronolith_Driver_Sql
|
|
{
|
|
public $calendar = 'foo';
|
|
|
|
public function __construct($calendar = 'foo')
|
|
{
|
|
$this->calendar = $calendar;
|
|
}
|
|
} |