diff --git a/README.md b/README.md index 9ebe406..21aa2ef 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Allure PHP Commons [![Version](http://poser.pugx.org/allure-framework/allure-php-commons/version)](https://packagist.org/packages/allure-framework/allure-php-commons) -[![Build](https://github.com/allure-framework/allure-php-commons2/actions/workflows/build.yml/badge.svg)](https://github.com/allure-framework/allure-php-commons/actions/workflows/build.yml) +[![Build](https://github.com/allure-framework/allure-php-commons2/actions/workflows/build.yml/badge.svg)](https://github.com/allure-framework/allure-php-commons2/actions/workflows/build.yml) [![Type Coverage](https://shepherd.dev/github/allure-framework/allure-php-commons2/coverage.svg)](https://shepherd.dev/github/allure-framework/allure-php-commons2) [![Psalm Level](https://shepherd.dev/github/allure-framework/allure-php-commons2/level.svg)](https://shepherd.dev/github/allure-framework/allure-php-commons2) [![License](http://poser.pugx.org/allure-framework/allure-php-commons/license)](https://packagist.org/packages/allure-framework/allure-php-commons) diff --git a/src/Allure.php b/src/Allure.php index d70ee06..1956817 100644 --- a/src/Allure.php +++ b/src/Allure.php @@ -56,14 +56,6 @@ public static function reset(): void self::$instance = null; } - /** - * @deprecated Please use lifecycle configurator to set output directory. - */ - public static function setOutputDirectory(string $outputDirectory): void - { - self::getLifecycleConfigurator()->setOutputDirectory($outputDirectory); - } - public static function getLifecycleConfigurator(): LifecycleConfiguratorInterface { return self::getInstance()->getLifecycleBuilder(); diff --git a/src/Model/ModelProviderChain.php b/src/Model/ModelProviderChain.php index bce32f6..cee154c 100644 --- a/src/Model/ModelProviderChain.php +++ b/src/Model/ModelProviderChain.php @@ -62,14 +62,6 @@ public function getParameters(): array ); } - /** - * @deprecated Please use {@see getDisplayName()} method. - */ - public function getTitle(): ?string - { - return $this->getDisplayName(); - } - public function getDisplayName(): ?string { $displayName = null;