This config works for me with the following setup, YMMV
- OSX El Capitain
- PHPStorm 2016.2.1
- Lumen 5.2
- Homestead as of Lumen 5.2
- php 7.0.8-2
- Xdebug 2.4.0
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
const fetchMachine = Machine({ | |
id: 'memberSearchMachine', | |
initial: 'dataEntry', | |
context: { | |
data: {}, | |
validationErrors: {}, | |
apiClient: {}, | |
history: {}, | |
}, | |
states: { |
const fetchMachine = Machine({ | |
id: 'fetch', | |
initial: 'idle', | |
context: { | |
retries: 0 | |
}, | |
on: { | |
UPDATE_VALUE_FROM_SERVER: { | |
actions: 'updateInternalValue' | |
}, |