Create opcache.php

This commit is contained in:
Jerry Ma
2023-05-17 15:24:45 +08:00
committed by GitHub
parent 2e50ee37a9
commit 89ad11ebb6

View File

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace SPC\builder\extension;
use SPC\builder\Extension;
use SPC\util\CustomExt;
#[CustomExt('opcache')]
class opcache extends Extension
{
public function getDistName(): string
{
return 'Zend Opcache';
}
}