Skip to content

Commit 355b7f8

Browse files
committed
WIP
1 parent 0c2b21a commit 355b7f8

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

src/Body.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Spameri\ElasticQuery;
4+
5+
6+
class Body
7+
{
8+
public function __construct(
9+
10+
)
11+
{
12+
13+
}
14+
}

src/ElasticQuery.php

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
<?php declare(strict_types = 1);
22

3-
namespace Spameri;
3+
namespace Spameri\ElasticQuery;
44

55

6-
class ElasticQuery
6+
class Query
77
{
88

9+
public function __construct(
10+
11+
)
12+
{
913

14+
}
15+
16+
17+
public function toArray() : array
18+
{
19+
return [];
20+
}
1021
}

0 commit comments

Comments
 (0)