{"record":{"id":"4d0a980fc14b158b","repo":"yiisoft/yii2","slug":"neither-fixture-fullclassname-nor-fullclas","errorCode":null,"errorMessage":"Neither fixture \"{$fullClassName}\" nor \"{$fullClassName}Fixture\" was found.","messagePattern":"Neither fixture \"(.+?)\" nor \"(.+?)Fixture\" was found\\.","errorType":"console","errorClass":"Exception","httpStatus":null,"severity":"error","filePath":"framework/console/controllers/FixtureController.php","lineNumber":492,"sourceCode":"     * @param array $fixtures fixtures to configure\n     * @return array\n     */\n    private function getFixturesConfig($fixtures)\n    {\n        $config = [];\n\n        foreach ($fixtures as $fixture) {\n            $isNamespaced = (strpos($fixture, '\\\\') !== false);\n            // replace linux' path slashes to namespace backslashes, in case if $fixture is non-namespaced relative path\n            $fixture = str_replace('/', '\\\\', $fixture);\n            $fullClassName = $isNamespaced ? $fixture : $this->namespace . '\\\\' . $fixture;\n\n            if (class_exists($fullClassName)) {\n                $config[] = $fullClassName;\n            } elseif (class_exists($fullClassName . 'Fixture')) {\n                $config[] = $fullClassName . 'Fixture';\n            } else {\n                throw new Exception('Neither fixture \"' . $fullClassName . '\" nor \"' . $fullClassName . 'Fixture\" was found.');\n            }\n        }\n\n        return $config;\n    }\n\n    /**\n     * Filters fixtures by splitting them in two categories: one that should be applied and not.\n     *\n     * If fixture is prefixed with \"-\", for example \"-User\", that means that fixture should not be loaded,\n     * if it is not prefixed it is considered as one to be loaded. Returns array:\n     *\n     * ```\n     * [\n     *     'apply' => [\n     *         'User',\n     *         ...\n     *     ],","sourceCodeStart":474,"sourceCodeEnd":510,"githubUrl":"https://github.com/yiisoft/yii2/blob/66f00d18a29b520f85e8e8f1e32d1e7e7b556cac/framework/console/controllers/FixtureController.php#L474-L510","documentation":"Error \"Neither fixture \"{$fullClassName}\" nor \"{$fullClassName}Fixture\" was found.\" thrown in yiisoft/yii2.","triggerScenarios":"Thrown at framework/console/controllers/FixtureController.php:492 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"66f00d18a29b520f85e8e8f1e32d1e7e7b556cac","analyzedAt":"2026-08-17T05:17:23.470Z","schemaVersion":2},"datasetVersion":"2026-08-17T09:17:11.063Z"}