15 lines
289 B
PHP
15 lines
289 B
PHP
<?php
|
|
|
|
class SihnonFramework_Log_PluginBase extends SihnonFramework_PluginBase {
|
|
|
|
protected $instance;
|
|
|
|
protected function __construct($instance) {
|
|
$this->instance = $instance;
|
|
}
|
|
|
|
public function instance() {
|
|
return $this->instance;
|
|
}
|
|
|
|
} |