File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ class SupabaseAdapter implements FilesystemAdapter
4040 public function __construct (array $ config )
4141 {
4242 $ this ->config = new Config ($ config );
43- $ endpoint = $ this ->config ->get ('endpoint ' ) ?? throw new \LogicException ('You need to specified endpoint ' );
43+ $ endpoint = $ this ->config ->get ('endpoint ' ) ?? throw new \LogicException ('endpoint is not specified ' );
4444 $ this ->endpoint = $ endpoint .'/storage/v1 ' ;
45- $ this ->bucket = $ this ->config ->get ('bucket ' ) ?? throw new \LogicException ('You need to specify bucket ' );
46- $ this ->key = $ this ->config ->get ('key ' ) ?? throw new \LogicException ('You need to specify key ' );
45+ $ this ->bucket = $ this ->config ->get ('bucket ' ) ?? throw new \LogicException ('bucket is not specified ' );
46+ $ this ->key = $ this ->config ->get ('key ' ) ?? throw new \LogicException ('key is not specified ' );
4747
4848 $ this ->httpClient = Http::baseUrl ($ this ->endpoint )->withHeaders ([
4949 'Authorization ' => "Bearer {$ this ->key }" ,
You can’t perform that action at this time.
0 commit comments