for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* FastCGI Cache Bust plugin for Craft CMS 3.x
*
* Bust the Nginx FastCGI Cache when entries are saved or created.
* @link https://nystudio107.com
* @copyright Copyright (c) 2017 nystudio107
*/
namespace nystudio107\fastcgicachebust\models;
use craft\base\Model;
* @author nystudio107
* @package FastcgiCacheBust
* @since 1.0.0
class Settings extends Model
{
// Public Properties
// =========================================================================
* @var string
public string $cachePath = '';
// Public Methods
* @inheritdoc
public function rules(): array
return [
['cachePath', 'string'],
['cachePath', 'default', 'value' => ''],
];
}