You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php
declare(strict_types=1);
namespace Atk4\Data\Persistence;
// dummy space to match the line numbers in the screenshot below
//
class GenericPlatform extends Platforms\AbstractPlatform
{
private function createNotSupportedException(): \Exception
{
return DbalException::notSupported('SQL');
}
#[\Override]
public function getName(): string
{
return 'atk4_data_generic';
}
#[\Override]
protected function initializeDoctrineTypeMappings(): void {}
}
This is a feature request to improve the emitted coverage line of method to be the "line where the method name (or visibility) is declared".
In the example screen, I would coverage to be emitted on l18 and l24 (instead l17 and l23).
The text was updated successfully, but these errors were encountered:
Interestingly, classes that appear afterMyEnum in the directory structure don’t have similar lines marked as executable. If I edit MyClass anywhere and run the coverage report again, suddenly the whole attribute is no longer marked as executable. It seems as if whether such lines are marked as executable depends on whether MyEnum was already “seen” by the coverage report (with the same cache left intact).
repro code:
This is a feature request to improve the emitted coverage line of method to be the "line where the method name (or visibility) is declared".
In the example screen, I would coverage to be emitted on l18 and l24 (instead l17 and l23).
The text was updated successfully, but these errors were encountered: