Skip to content

Instantly share code, notes, and snippets.

@bernard-ng
Created July 20, 2020 11:11
Show Gist options
  • Save bernard-ng/bde32c75cec6c341f741f97f25906bee to your computer and use it in GitHub Desktop.
Save bernard-ng/bde32c75cec6c341f741f97f25906bee to your computer and use it in GitHub Desktop.
<?php
class Store
{
protected array $state;
protected Closure $reducer;
public function __construct(callable $reducer, array $initialState)
{
$this->state = $initialState;
$this->reducer = Closure::fromCallable($reducer);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment