From 8cc776a92c2f721ea45d94813268f3ec04558e78 Mon Sep 17 00:00:00 2001 From: Tom Newby Date: Wed, 7 Feb 2018 15:56:07 +1000 Subject: [PATCH] fix(typo): s/salaray/salary --- testing/database.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/database.rst b/testing/database.rst index a1eb9a1e721..2498555cb6d 100644 --- a/testing/database.rst +++ b/testing/database.rst @@ -75,7 +75,7 @@ it's easy to pass a mock object within a test:: public function testCalculateTotalSalary() { $employee = new Employee(); - $employee->setSalaray(1000); + $employee->setSalary(1000); $employee->setBonus(1100); // Now, mock the repository so it returns the mock of the employee