|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
www |
1 |
<?php
|
|
|
2 |
declare(strict_types=1);
|
|
|
3 |
|
|
|
4 |
namespace LeadersLinked\Model;
|
|
|
5 |
|
|
|
6 |
|
|
|
7 |
interface Provider
|
|
|
8 |
{
|
|
|
9 |
const FACEBOOK = 'facebook';
|
|
|
10 |
const TWITTER = 'twitter';
|
|
|
11 |
const GOOGLE = 'google';
|
|
|
12 |
const PAYPAL = 'paypal';
|
|
|
13 |
}
|