Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
spatie
/
laravel-event-sourcing
/
src
/
AggregateRoots
:
FakeAggregateRootForPartial.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\EventSourcing\AggregateRoots; class FakeAggregateRootForPartial extends AggregateRoot { public function __construct() { // Do nothing } public function addPartial(AggregatePartial $aggregatePartial): void { $this->resolvePartials(); $this->entities[] = $aggregatePartial; } }