• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

phpolar / model / 5449748827

pending completion
5449748827

Pull #12

github

web-flow
Merge 068a00ea6 into 190d9e203
Pull Request #12: refactor: use renamed core library

263 of 287 relevant lines covered (91.64%)

7.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/EntityNameConfigurationTrait.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace Phpolar\Model;
6

7
use ReflectionClass;
8
use ReflectionObject;
9

10
/**
11
 * Allows for configuring the name of entity.
12
 */
13
trait EntityNameConfigurationTrait
14
{
15
    /**
16
     * Returns the name of the entity
17
     *
18
     * @api
19
     */
20
    public function getName(): string
21
    {
22
        $attrs = (new ReflectionObject($this))->getAttributes(EntityName::class);
4✔
23
        if (count($attrs) < 1) {
4✔
24
            return (new ReflectionClass(static::class))->getShortName();
2✔
25
        }
26
        $attr = $attrs[0];
2✔
27
        return $attr->newInstance()->getName();
2✔
28
    }
29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc