flatrr/src/FlatArray.php

14 lines
255 B
PHP
Raw Normal View History

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
{
use FlatArrayTrait;
2018-08-17 21:02:50 +00:00
public function __construct(array $data = null)
{
$this->merge($data);
}
}