mirror of
https://github.com/jbcr/SyliusCmsPlugin.git
synced 2026-04-29 11:33:27 +02:00
22 lines
498 B
PHP
Executable File
22 lines
498 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* This file has been created by the developers from BitBag.
|
|
* Feel free to contact us once you face any issues or want to start
|
|
* another great project.
|
|
* You can find more information about us on https://bitbag.shop and write us
|
|
* an email on mikolaj.krol@bitbag.pl.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\BitBag\SyliusCmsPlugin\Behat\Behaviour;
|
|
|
|
interface ChecksCodeImmutabilityInterface
|
|
{
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isCodeDisabled(): bool;
|
|
}
|