Kyle

Results 319 comments of Kyle

Hello, This package split the time in days dans days contain ranges of `Time`, as you can see in the code, `Time` only contain `$hours` and `$minute` granularity to represent...

Hello, This could be investigated, however I feel it could introduce quite a lot of complexity and maintenance burden for a rare case. Most business just use minute granularity to...

We can indeed publish `schema` folder on pdepend.org but I don't see any `dic` folder, no idea what it refers to. 🤔

Hello, While the point about [PDepend should follow the same case-sensitivity rules than PHP itself for token] is fair, I would recommend to strictly use lower-case everywhere for PHP keywords,...

Hello, here is how you can get the number of public methods of a class: ```php function getNumberOfPublicMethods(\PDepend\Source\AST\ASTClass $class): int { return count(array_filter($class->getAllMethods(), function (\PDepend\Source\AST\ASTMethod $method) { return $method->isPublic(); }));...

You can check the code for other metrics https://github.com/pdepend/pdepend/tree/master/src/main/php/PDepend/Metrics/Analyzer And you can propose a new one here with a pull-request.

PHAR updated manually. I think we have an issue in our automated process not uploading the PHAR when the release is published from a draft and not created and published...

> This is intentional and explained in #4502. I see it's intentional and noted "not recommended because too fine-grained" But I'm searching with no luck where this design choice is...

A big thank you @sebastianbergmann for this attribute port of the method annotations :) we're lucky to have you in the PHP community 🥇

All errors from `ci/circleci: test-with-real-projects` also appears in 5.x job.