2018-08-17 21:02:50 +00:00
|
|
|
<?php
|
2018-08-17 22:09:45 +00:00
|
|
|
/* Flatrr | https://gitlab.com/byjoby/flatrr | MIT License */
|
|
|
|
namespace Flatrr;
|
2018-08-17 21:02:50 +00:00
|
|
|
|
|
|
|
class FlatArray implements FlatArrayInterface
|
|
|
|
{
|
2018-08-24 03:00:49 +00:00
|
|
|
use FlatArrayTrait;
|
2018-08-17 21:02:50 +00:00
|
|
|
|
|
|
|
public function __construct(array $data = null)
|
|
|
|
{
|
|
|
|
$this->merge($data);
|
|
|
|
}
|
|
|
|
}
|