forked from ongr-io/FilterManagerBundle
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSerializableInterface.php
More file actions
Latest commit
26 lines (23 loc) · 587 Bytes
/
Copy pathSerializableInterface.php
File metadata and controls
26 lines (23 loc) · 587 Bytes
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
<?php
/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <info@nfq.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespaceONGR\FilterManagerBundle;
/**
* This interface defines methods required to serialize object which will be
* later JSON encoded.
*/
interface SerializableInterface
{
/**
* Returns all serializable data as scalar or array of scalars.
*
* @return mixed Serializable data
*/
publicfunctiongetSerializableData();
}