• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Build has been canceled!

tempestphp / tempest-framework / 14024978163

23 Mar 2025 05:55PM UTC coverage: 79.391% (-0.05%) from 79.441%
14024978163

push

github

web-flow
feat(view): cache Blade and Twig templates in internal storage (#1061)

2 of 2 new or added lines in 2 files covered. (100.0%)

912 existing lines in 110 files now uncovered.

10478 of 13198 relevant lines covered (79.39%)

91.09 hits per line

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

33.33
/src/Tempest/Console/src/Point.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace Tempest\Console;
6

7
use Stringable;
8

9
final class Point implements Stringable
10
{
11
    public function __construct(
30✔
12
        public int $x,
13
        public int $y,
14
    ) {
15
    }
30✔
16

UNCOV
17
    public function equals(self $other): bool
×
18
    {
UNCOV
19
        return $this->x === $other->x && $this->y === $other->y;
×
20
    }
21

22
    public function __toString(): string
×
23
    {
24
        return "[{$this->x},{$this->y}]";
×
25
    }
26
}
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

© 2026 Coveralls, Inc