Skip to content

Commit

Permalink
Merge pull request #38 from cmitasch/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
DivineOmega committed Sep 28, 2016
2 parents f4bc02a + 21dcfa1 commit a275f02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -91,9 +91,9 @@ The following example shows how to change the name and status of a component, th
$components = $cachetInstance->getAllComponents();

// Change component details
$component[0]->name = 'My awesome component';
$component[0]->status = 1;
$component[0]->save();
$components[0]->name = 'My awesome component';
$components[0]->status = 1;
$components[0]->save();
```

## Deleting Cachet elements
Expand Down

0 comments on commit a275f02

Please sign in to comment.