commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ExternalOAuthBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
21final class ExternalOAuthBuilder implements Builder
22{
27 private $url;
28
33 private $authorizationHeader;
34
41 public function getUrl()
42 {
43 return $this->url;
44 }
45
52 public function getAuthorizationHeader()
53 {
54 return $this->authorizationHeader;
55 }
56
61 public function withUrl(?string $url)
62 {
63 $this->url = $url;
64
65 return $this;
66 }
67
72 public function withAuthorizationHeader(?string $authorizationHeader)
73 {
74 $this->authorizationHeader = $authorizationHeader;
75
76 return $this;
77 }
78
79
80 public function build(): ExternalOAuth
81 {
82 return new ExternalOAuthModel(
83 $this->url,
84 $this->authorizationHeader
85 );
86 }
87
88 public static function of(): ExternalOAuthBuilder
89 {
90 return new self();
91 }
92}