Files
sysPass/inc/SP/Core/Plugin/PluginBase.class.php
2016-11-29 18:29:54 +01:00

29 lines
402 B
PHP

<?php
namespace SP\Core\Plugin;
use SplObserver;
abstract class PluginBase implements SplObserver
{
/**
* @var string Tipo de plugin
*/
protected $type;
/**
* @return mixed
*/
public function getType()
{
return $this->type;
}
/**
* @param mixed $type
*/
public function setType($type)
{
$this->type = $type;
}
}