FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Domain
/
ValueObjects
/
String
Edit File: StripeAccountType.php
<?php namespace AmeliaBooking\Domain\ValueObjects\String; /** * Class StripeAccountType * * @package AmeliaBooking\Domain\ValueObjects\String */ final class StripeAccountType { public const STANDARD = 'standard'; public const EXPRESS = 'express'; /** * @var string */ private $type; /** * Type constructor. * * @param string $type */ public function __construct($type) { $this->type = $type; } /** * Return the type from the value object * * @return string */ public function getValue() { return $this->type; } }
Save
Back