repo = $repo; } public function __call( $name, $arguments ) { if ( ! method_exists( $this->repo, $name ) ) { return null; } return call_user_func_array( array( $this->repo, $name ), $arguments ); } public static function __callStatic( $name, $arguments ) { $self = Gravity_SMTP::$container->get( Feature_Flags_Service_Provider::FEATURE_FLAG_MANAGER ); if ( ! method_exists( $self->repo, $name ) ) { return null; } return call_user_func_array( array( $self->repo, $name ), $arguments ); } }