File size: 532 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace MauticPlugin\MauticFullContactBundle\Services;

/**
 * This class just tells us what icons we have available.
 *
 * @author   Keith Casey <contrib@caseysoftware.com>
 * @license  http://www.apache.org/licenses/LICENSE-2.0 Apache
 */
class FullContact_Icon extends FullContact_Base
{
    protected $_supportedMethods = ['available'];

    protected $_resourceUri      = '/icon/';

    public function available()
    {
        $this->_execute(['method' => 'available']);

        return $this->response_obj;
    }
}