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.
33 lines
595 B
PHP
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;
|
|
} |