1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-13 10:15:28 +02:00
This commit is contained in:
Ryan Cramer
2019-12-03 11:11:19 -05:00
parent b5aca0e964
commit a6e3626992
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ class Wire404Exception extends WireException {
const codeNonexist = 404; 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 * Similar to a WirePermissionException except always still a 404 externally
* *

View File

@@ -1277,7 +1277,7 @@ abstract class Inputfield extends WireData implements Module {
/** /**
* Process input for this Inputfield directly from the POST (or GET) variables * 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. * 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. * Inputfield modules should implement this method if the built-in one here doesn't solve their need.

View File

@@ -54,7 +54,7 @@ class PageimageVariations extends Wire implements \IteratorAggregate, \Countable
* *
* This method is also here to implement the Countable interface. * 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 * @return int
* *
*/ */