mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-02-14 12:53:48 +00:00
19 lines
297 B
PHP
19 lines
297 B
PHP
<?php
|
|
/**
|
|
* Author: lang
|
|
* Email: 732853989@qq.com
|
|
* Date: 2023/3/23
|
|
* Time: 17:44
|
|
*/
|
|
|
|
namespace Kkokk\Poster\Image;
|
|
|
|
use Kkokk\Poster\Image\Queries\ImagickQuery;
|
|
|
|
class ImagickExtension extends Extension
|
|
{
|
|
public function getQueryInstance()
|
|
{
|
|
return new ImagickQuery;
|
|
}
|
|
} |