Files
ik-codex/src/Analysis/InformationInterface.php
indifferentketchup 66a2fcc5f3 Rename namespace Aternos\Codex to IndifferentKetchup\Codex
Bulk substitution across all PHP files in src/ and test/. Covers
namespace declarations, use statements, fully-qualified class
references, and @package PHPDoc tags. No logic changes.
2026-04-30 15:13:52 +00:00

33 lines
595 B
PHP

<?php
namespace IndifferentKetchup\Codex\Analysis;
/**
* Interface InformationInterface
*
* @package IndifferentKetchup\Codex\Analysis
*/
interface InformationInterface extends InsightInterface
{
/**
* Get the information label
*
* @return string
*/
public function getLabel(): string;
/**
* Set the information value
*
* @param mixed $value
* @return $this
*/
public function setValue(mixed $value): static;
/**
* Get the information value
*
* @return mixed
*/
public function getValue(): mixed;
}