PluginProbe
Media Cloud Sync / 1.2.9
Media Cloud Sync v1.2.9
1.4.1 1.4.0 1.3.12 1.3.11 1.3.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.2.0 1.2.10 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 All 35 releases
media-cloud-sync / includes / sdk / google / ramsey / uuid / src / Builder / FallbackBuilder.php

FallbackBuilder.php in Media Cloud Sync 1.2.9, at includes/sdk/google/ramsey/uuid/src/Builder/FallbackBuilder.php

63 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * This file is part of the ramsey/uuid library
5 *
6 * For the full copyright and license information, please view the LICENSE
7 * file that was distributed with this source code.
8 *
9 * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
10 * @license http://opensource.org/licenses/MIT MIT
11 */
12 declare (strict_types=1);
13 namespace Dudlewebs\WPMCS\Ramsey\Uuid\Builder;
14
15 use Dudlewebs\WPMCS\Ramsey\Uuid\Codec\CodecInterface;
16 use Dudlewebs\WPMCS\Ramsey\Uuid\Exception\BuilderNotFoundException;
17 use Dudlewebs\WPMCS\Ramsey\Uuid\Exception\UnableToBuildUuidException;
18 use Dudlewebs\WPMCS\Ramsey\Uuid\UuidInterface;
19 /**
20 * FallbackBuilder builds a UUID by stepping through a list of UUID builders
21 * until a UUID can be constructed without exceptions
22 *
23 * @psalm-immutable
24 */
25 class FallbackBuilder implements UuidBuilderInterface
26 {
27 /**
28 * @var BuilderCollection
29 */
30 private $builders;
31 /**
32 * @param BuilderCollection $builders An array of UUID builders
33 */
34 public function __construct(BuilderCollection $builders)
35 {
36 $this->builders = $builders;
37 }
38 /**
39 * Builds and returns a UuidInterface instance using the first builder that
40 * succeeds
41 *
42 * @param CodecInterface $codec The codec to use for building this instance
43 * @param string $bytes The byte string from which to construct a UUID
44 *
45 * @return UuidInterface an instance of a UUID object
46 *
47 * @psalm-pure
48 */
49 public function build(CodecInterface $codec, string $bytes): UuidInterface
50 {
51 $lastBuilderException = null;
52 foreach ($this->builders as $builder) {
53 try {
54 return $builder->build($codec, $bytes);
55 } catch (UnableToBuildUuidException $exception) {
56 $lastBuilderException = $exception;
57 continue;
58 }
59 }
60 throw new BuilderNotFoundException('Could not find a suitable builder for the provided codec and fields', 0, $lastBuilderException);
61 }
62 }
63