From 5f1776829b7be83f81503f8ace67a07bc663cf2d Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Sun, 31 Oct 2021 22:16:02 +0100 Subject: [PATCH] Update src/Concerns/Extendable.php --- src/Concerns/Extendable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Concerns/Extendable.php b/src/Concerns/Extendable.php index ead03d01..5a8408cd 100644 --- a/src/Concerns/Extendable.php +++ b/src/Concerns/Extendable.php @@ -77,7 +77,7 @@ trait Extendable /** * Checks if pipes are registered for a given expectation. */ - public static function hasPipes(string $name): bool + private static function hasPipes(string $name): bool { return array_key_exists($name, static::$pipes); }