Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
90.91% covered (success)
90.91%
10 / 11
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
FromDateObject
90.91% covered (success)
90.91%
10 / 11
50.00% covered (danger)
50.00%
1 / 2
5.02
0.00% covered (danger)
0.00%
0 / 1
 support
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getIndexes
90.00% covered (success)
90.00%
9 / 10
0.00% covered (danger)
0.00%
0 / 1
4.02
1<?php
2namespace Apie\Core\Indexing;
3
4use Apie\Core\Context\ApieContext;
5use Apie\Core\ContextConstants;
6use Apie\Core\Lists\StringList;
7use DateTimeInterface;
8use Stringable;
9
10final class FromDateObject implements IndexingStrategyInterface
11{
12    private const DEFAULT_FORMATS = [
13        DateTimeInterface::ATOM,
14        'D',
15        'l',
16        'S',
17        'W',
18        'F',
19        'M',
20        'L',
21        'a',
22        'e',
23        'T'
24    ];
25
26    public function support(object $object): bool
27    {
28        return $object instanceof DateTimeInterface;
29    }
30
31    /**
32     * @return array<string, int>
33     */
34    public function getIndexes(object $class, ApieContext $context, Indexer $indexer): array
35    {
36        assert($class instanceof DateTimeInterface);
37        $res = [];
38        if ($class instanceof Stringable) {
39            $res[$class->__toString()] = 5;
40        }
41        $formats = self::DEFAULT_FORMATS;
42        if ($context->hasContext(ContextConstants::DATEFORMATS)) {
43            $formats = new StringList($context->getContext(ContextConstants::DATEFORMATS));
44        }
45        foreach ($formats as $format) {
46            $res[$class->format($format)] = 1;
47        }
48        return $res;
49    }
50}