Created
July 20, 2020 11:11
-
-
Save bernard-ng/bde32c75cec6c341f741f97f25906bee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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