Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
api.meumercado.app
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
Exception
/
Messaging
/
Editing: MessagingError.php
<?php declare(strict_types=1); namespace Kreait\Firebase\Exception\Messaging; use Kreait\Firebase\Exception\HasErrors; use Kreait\Firebase\Exception\MessagingException; use RuntimeException; final class MessagingError extends RuntimeException implements MessagingException { use HasErrors; /** * @internal * * @param string[] $errors */ public function withErrors(array $errors): self { $new = new self($this->getMessage(), $this->getCode(), $this->getPrevious()); $new->errors = $errors; return $new; } }
Save
Cancel