|
1
|
<?php |
|
2
|
|
|
3
|
namespace FSVendor\WPDesk\Forms\Serializer; |
|
4
|
|
|
5
|
use FSVendor\WPDesk\Forms\Serializer; |
|
6
|
class NoSerialize implements Serializer |
|
7
|
{ |
|
8
|
public function serialize($value) |
|
9
|
{ |
|
10
|
return $value; |
|
11
|
} |
|
12
|
public function unserialize($value) |
|
13
|
{ |
|
14
|
return $value; |
|
15
|
} |
|
16
|
} |
|
17
|
|