mirror of
https://github.com/friendica/friendica
synced 2024-11-15 10:13:53 +00:00
19 lines
455 B
PHP
19 lines
455 B
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Test\Util\Hooks\InstanceMocks;
|
|
|
|
interface IAmADecoratedInterface
|
|
{
|
|
public function createSomething(string $aText, bool $cBool, string $bText): string;
|
|
|
|
public function getAText(): ?string;
|
|
|
|
public function getBText(): ?string;
|
|
|
|
public function getCBool(): ?bool;
|
|
}
|