Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
chore(docs): update README (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
greatislander authored Dec 3, 2024
1 parent 15c4049 commit 92343fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Hearth

**NOTE: This project is no longer maintained. Please use [fluid-project/hearth-components](https://github.com/fluid-project/hearth-components) instead.**

A simple starter kit for the Laravel framework.

[![Latest Version on Packagist](https://badgen.net/packagist/v/fluid-project/hearth/)](https://packagist.org/packages/fluid-project/hearth)
Expand Down
4 changes: 2 additions & 2 deletions stubs/app/Http/Livewire/ResourceSelect.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function mount(?int $resourceCollectionId)

public function addResource(int $id): void
{
/** @var ?Resource $resourceToAdd */
/** @var ?resource $resourceToAdd */
$resourceToAdd = $this->availableResources->find($id);
if ($resourceToAdd) {
$this->selectedResources->push($resourceToAdd);
Expand All @@ -41,7 +41,7 @@ public function addResource(int $id): void

public function removeResource(int $id): void
{
/** @var ?Resource $resourceToRemove */
/** @var ?resource $resourceToRemove */
$resourceToRemove = $this->selectedResources->find($id);
if ($resourceToRemove) {
$this->availableResources->push($resourceToRemove);
Expand Down

0 comments on commit 92343fc

Please sign in to comment.