HypeMC
Repos
35
Followers
8
Following
1

Symfony bundle which provides a way to version your application using various versioning strategies

4
2

Symfony bundle which creates a dedicated Monolog log file for each command or message handler

3
0

Provides a simple way to mock built-in PHP functions in PHPUnit tests

0
0

Events

HypeMC delete branch purgatory
Created at 1 hour ago
delete branch
HypeMC delete branch delay-flush-return
Created at 2 hours ago
pull request opened
Have `delayFlush()` return the callback's return

A minor DX improvement, instead of having to do eg:

$tags = [];
Factory::delayFlush(function() use (&$tags) {
    // ...
    $tags = TagFactory::createMany(200);
});

the needed fixtures can now be returned instead:

$tags = Factory::delayFlush(function() {
    // ...
    return TagFactory::createMany(200);
});

or multiple:

[$categories, $tags] = Factory::delayFlush(function() {
    return [
        CategoryFactory::createMany(100),
        TagFactory::createMany(200),
    ];
});
Created at 3 hours ago

Have delayFlush return the callback's return

Created at 3 hours ago
create branch
HypeMC create branch delay-flush-return
Created at 3 hours ago
delete branch
HypeMC delete branch isgranted-subject-as-expression
Created at 4 hours ago
pull request opened
March 2023 - Purgatory
Created at 4 hours ago
HypeMC create branch purgatory
Created at 4 hours ago
Created at 5 hours ago
issue comment
Add `handler_default_channels` configuration option

I've updated the PR according to my proposal.

Created at 3 days ago

Add handler_default_channels configuration option

Created at 3 days ago
create branch
HypeMC create branch autoexcludedchannelspass-old
Created at 3 days ago