From cf0394b569ebed20ee71e1daf6f96fc02f964d98 Mon Sep 17 00:00:00 2001 From: Evgeny Chernyavskiy Date: Sun, 4 Oct 2015 13:09:09 -0400 Subject: [PATCH] Update 15-02-01-PHPDoc.md --- _posts/15-02-01-PHPDoc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/15-02-01-PHPDoc.md b/_posts/15-02-01-PHPDoc.md index e452ec7..37dedd3 100644 --- a/_posts/15-02-01-PHPDoc.md +++ b/_posts/15-02-01-PHPDoc.md @@ -66,7 +66,7 @@ Inside the class, the first method has a [@param] tag documenting the type, name being passed to the method. Additionally it has the [@return] and [@throws] tags for documenting the return type, and any exceptions that could be thrown respectively. The second and third methods are very similar and have a single [@param] tag as did the first method. The important -difference between the second and third method's doc block is the inclusion/exclusion of the [@return] tag. +difference between the second and third methods' doc block is the inclusion/exclusion of the [@return] tag. `@return void` explicitly informs us that there is no return; historically omitting the `@return void` statement also results in the same (no return) action.