From a6e3626992176f65d6294b29327c9c62ac0af5f2 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Tue, 3 Dec 2019 11:11:19 -0500 Subject: [PATCH] phpdoc typo fixes per processwire/processwire-issues#797 --- wire/core/Exceptions.php | 2 +- wire/core/Inputfield.php | 2 +- wire/core/PageimageVariations.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wire/core/Exceptions.php b/wire/core/Exceptions.php index b01a9055..0ae9c2be 100644 --- a/wire/core/Exceptions.php +++ b/wire/core/Exceptions.php @@ -40,7 +40,7 @@ class Wire404Exception extends WireException { const codeNonexist = 404; /** - * 404 is a result of a resource that might exist but there is there is no access + * 404 is a result of a resource that might exist but there is no access * * Similar to a WirePermissionException except always still a 404 externally * diff --git a/wire/core/Inputfield.php b/wire/core/Inputfield.php index a835379b..0fb6fd36 100644 --- a/wire/core/Inputfield.php +++ b/wire/core/Inputfield.php @@ -1277,7 +1277,7 @@ abstract class Inputfield extends WireData implements Module { /** * Process input for this Inputfield directly from the POST (or GET) variables * - * This method should pull the value from the given `$input` ragument, sanitize/validate it, and + * This method should pull the value from the given `$input` argument, sanitize/validate it, and * populate it to the `value` attribute of this Inputfield. * * Inputfield modules should implement this method if the built-in one here doesn't solve their need. diff --git a/wire/core/PageimageVariations.php b/wire/core/PageimageVariations.php index fe3188a5..fd71bac0 100644 --- a/wire/core/PageimageVariations.php +++ b/wire/core/PageimageVariations.php @@ -54,7 +54,7 @@ class PageimageVariations extends Wire implements \IteratorAggregate, \Countable * * This method is also here to implement the Countable interface. * - * @param array $options See options for find() emthod + * @param array $options See options for find() method * @return int * */