Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TranslatableInterface.php #392

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/API/Translation/Value/TranslatableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace PhpTuf\ComposerStager\API\Translation\Value;

use PhpTuf\ComposerStager\API\Translation\Service\TranslatorInterface;
use Stringable;

/**
* Handles a translatable message.
Expand All @@ -22,8 +21,9 @@
*
* @api This interface is subject to our backward compatibility promise and may be safely depended upon.
*/
interface TranslatableInterface extends Stringable
interface TranslatableInterface

Check failure on line 24 in src/API/Translation/Value/TranslatableInterface.php

View workflow job for this annotation

GitHub Actions / Static Analysis

Translation system classes have changed. Make sure the appropriate changes have been made to the diagrams in docs/translation (don't forget to export and optimize the images) and update phpstan.neon.dist:parameters.translationSystemHash to 682778a38875d245a1b72bbccc2eae24
{
public function __toString();
/** Translates the message. */
public function trans(?TranslatorInterface $translator = null, ?string $locale = null): string;
}
Loading