1<?php23// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue4// SPDX-License-Identifier: BSD-3-Clause56declare(strict_types=1);78namespace SimplePie;910/**11* Handles the injection of Registry into other class12*13* {@see \SimplePie\SimplePie::get_registry()}14*/15interface RegistryAware16{17/**18* Set the Registry into the class19*20* @return void21*/22public function set_registry(Registry $registry);23}24