관리-도구
편집 파일: Storage.php
<?php declare(strict_types=1); namespace Kreait\Firebase\Contract; use Google\Cloud\Storage\Bucket; use Google\Cloud\Storage\StorageClient; interface Storage { public function getStorageClient(): StorageClient; public function getBucket(?string $name = null): Bucket; }