AutorÃa | Ultima modificación | Ver Log |
<?php declare(strict_types=1); namespace LeadersLinked\Model; interface Provider { const FACEBOOK = 'facebook'; const TWITTER = 'twitter'; const GOOGLE = 'google'; const PAYPAL = 'paypal'; }
<?php
declare(strict_types=1);
namespace LeadersLinked\Model;
interface Provider
{
const FACEBOOK = 'facebook';
const TWITTER = 'twitter';
const GOOGLE = 'google';
const PAYPAL = 'paypal';
}