芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/codeception/codeception/src/Codeception/Util/Fixtures.php
'davert']); * Fixtures::get('user1'); * Fixtures::exists('user1'); * * ?> * ``` * */ class Fixtures { protected static $fixtures = []; public static function add($name, $data) { self::$fixtures[$name] = $data; } public static function get($name) { if (!self::exists($name)) { throw new \RuntimeException("$name not found in fixtures"); } return self::$fixtures[$name]; } public static function cleanup($name = null) { if (self::exists($name)) { unset(self::$fixtures[$name]); return; } self::$fixtures = []; } public static function exists($name) { return isset(self::$fixtures[$name]); } }