FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Domain
/
ValueObjects
/
String
Edit File: PaymentType.php
<?php namespace AmeliaBooking\Domain\ValueObjects\String; /** * Class PaymentType * * @package AmeliaBooking\Domain\ValueObjects\String */ final class PaymentType { public const PAY_PAL = 'payPal'; public const STRIPE = 'stripe'; public const ON_SITE = 'onSite'; public const WC = 'wc'; public const MOLLIE = 'mollie'; public const RAZORPAY = 'razorpay'; public const SQUARE = 'square'; /** * @var string */ private $status; /** * Status constructor. * * @param int $status */ public function __construct($status) { $this->status = $status; } /** * Return the status from the value object * * @return string */ public function getValue() { return $this->status; } }
Save
Back