File size: 541 Bytes
e4f4821
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

namespace JsonRPC\Validator;

use JsonRPC\Exception\InvalidJsonFormatException;

/**
 * Class JsonFormatValidator
 *
 * @package JsonRPC\Validator
 * @author  Frederic Guillot
 */
class JsonFormatValidator
{
    /**
     * Validate
     *
     * @static
     * @access public
     * @param  mixed $payload
     * @throws InvalidJsonFormatException
     */
    public static function validate($payload)
    {
        if (! is_array($payload)) {
            throw new InvalidJsonFormatException('Malformed payload');
        }
    }
}