看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 27411ebedc
1827 changed files with 192340 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
<?php
namespace Kanboard\Formatter;
use Kanboard\Core\Base;
use PicoDb\Table;
/**
* Class BaseFormatter
*
* @package formatter
* @author Frederic Guillot
*/
abstract class BaseFormatter extends Base
{
/**
* Query object
*
* @access protected
* @var Table
*/
protected $query;
/**
* Set query
*
* @access public
* @param Table $query
* @return $this
*/
public function withQuery(Table $query)
{
$this->query = $query;
return $this;
}
}