Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/Contract/PropertyChangeApplier.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

declare(strict_types=1);

namespace KaririCode\PropertyInspector\Contract;

/**
* Interface PropertyChangeApplier.
*
* Defines the contract for classes that apply changes to an object.
*/
interface PropertyChangeApplier
{
/**
* Applies the processed changes to the given object.
*
* @param object $object The object to which the changes will be applied
*/
public function applyChanges(object $object): void;
}
Loading