readers = $readers; } /** * Read configuration scope for GraphQL. * * @param string|null $scope * @return array */ public function read($scope = null) : array { $output = []; foreach ($this->readers as $reader) { $output = array_replace_recursive($output, $reader->read($scope)); } return $output; } }