Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-matt-smith authored May 25, 2020
1 parent 6a0d3a7 commit 6cb14b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,11 +543,11 @@ $movieRepository = new MovieRepository();
// (1) drop then re-create table
$movieRepository->resetTable();

// (3) create objects
// (2) create objects
$movieRepository->createAndInsert('Jaws', 9.99, 'horror');
$movieRepository->createAndInsert('Jumanji', 7, 'entertainment');

// (4) test objects are there
// (3) test objects are there
$movies = $movieRespository->findAll();
print '<pre>';
var_dump($movies);
Expand Down

0 comments on commit 6cb14b7

Please sign in to comment.