Skip to content

Commit 961cbef

Browse files
committed
readme update
1 parent 7c82489 commit 961cbef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ class GoogleIndexingController extends Controller
3636
3737
public function updateURL(JobPosting $jobPosting)
3838
{
39-
$this->indexingService->publish($jobPosting->url, "URL_UPDATED");
39+
$this->indexingService->update($jobPosting->url);
4040
}
4141
4242
public function removeURL(JobPosting $jobPosting)
4343
{
44-
$this->indexingService->publish($jobPosting->url, "URL_DELETED");
44+
$this->indexingService->remove($jobPosting->url);
4545
}
4646
4747
public function statusURL(JobPosting $jobPosting)
4848
{
49-
$this->indexingService->status($jobPosting->url;
49+
$this->indexingService->status($jobPosting->url);
5050
}
5151
}
5252
```

0 commit comments

Comments
 (0)