From c9490d424ec11a4fe92f07f08cff95c85c7d22df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Porto=20Mari=C3=B1o?= Date: Thu, 24 Apr 2025 16:27:51 +0200 Subject: [PATCH] [skip-revcheck] Correct indentation (#4454) --- reference/bc/functions/bcpow.xml | 2 +- reference/datetime/datetime.xml | 78 ++++++++-------- reference/datetime/datetimeinterface.xml | 70 +++++++-------- reference/datetime/functions/strptime.xml | 88 +++++++++--------- reference/sync/book.xml | 32 +++---- reference/sync/configure.xml | 2 - reference/sync/setup.xml | 2 +- reference/sync/syncevent.xml | 13 +-- reference/sync/syncmutex.xml | 8 +- reference/sync/syncreaderwriter.xml | 8 +- reference/sync/syncsemaphore.xml | 8 +- reference/sync/syncsharedmemory.xml | 14 +-- reference/sync/syncsharedmemory/read.xml | 18 ++-- reference/uopz/book.xml | 11 ++- reference/uopz/constants.xml | 89 +++++++++++-------- reference/uopz/functions/uopz-backup.xml | 6 +- reference/uopz/functions/uopz-compose.xml | 28 +++--- reference/uopz/functions/uopz-copy.xml | 6 +- reference/uopz/functions/uopz-delete.xml | 2 +- reference/uopz/functions/uopz-extend.xml | 6 +- reference/uopz/functions/uopz-flags.xml | 8 +- reference/uopz/functions/uopz-function.xml | 10 +-- reference/uopz/functions/uopz-get-mock.xml | 12 +-- reference/uopz/functions/uopz-get-return.xml | 6 +- reference/uopz/functions/uopz-implement.xml | 2 +- reference/uopz/functions/uopz-overload.xml | 4 +- reference/uopz/functions/uopz-redefine.xml | 8 +- reference/uopz/functions/uopz-rename.xml | 10 +-- reference/uopz/functions/uopz-restore.xml | 6 +- reference/uopz/functions/uopz-set-return.xml | 10 +-- reference/uopz/functions/uopz-undefine.xml | 6 +- reference/uopz/functions/uopz-unset-mock.xml | 2 +- .../uopz/functions/uopz-unset-return.xml | 6 +- reference/uopz/setup.xml | 4 +- 34 files changed, 299 insertions(+), 286 deletions(-) diff --git a/reference/bc/functions/bcpow.xml b/reference/bc/functions/bcpow.xml index b24818290b..7903a1919c 100644 --- a/reference/bc/functions/bcpow.xml +++ b/reference/bc/functions/bcpow.xml @@ -151,7 +151,7 @@ echo bcpow('5', '2', 2); // prints "25", not "25.00" bcpowmod bcsqrt - BcMath\Number::pow + BcMath\Number::pow diff --git a/reference/datetime/datetime.xml b/reference/datetime/datetime.xml index 04227c08a4..dd915ac57f 100644 --- a/reference/datetime/datetime.xml +++ b/reference/datetime/datetime.xml @@ -64,45 +64,45 @@ - -
- &reftitle.changelog; - - - - - - &Version; - &Description; - - - - - 8.4.0 - - The class constants are now typed. - - - - 7.2.0 - - The class constants of DateTime are now defined - on DateTimeInterface. - - - - 7.1.0 - - The DateTime constructor now includes the - current microseconds in the constructed value. Before this, it would - always initialise the microseconds to 0. - - - - - - -
+ +
+ &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 8.4.0 + + The class constants are now typed. + + + + 7.2.0 + + The class constants of DateTime are now defined + on DateTimeInterface. + + + + 7.1.0 + + The DateTime constructor now includes the + current microseconds in the constructed value. Before this, it would + always initialise the microseconds to 0. + + + + + + +
diff --git a/reference/datetime/datetimeinterface.xml b/reference/datetime/datetimeinterface.xml index 9c6529292f..54347e4975 100644 --- a/reference/datetime/datetimeinterface.xml +++ b/reference/datetime/datetimeinterface.xml @@ -353,41 +353,41 @@ -
- &reftitle.changelog; - - - - - - &Version; - &Description; - - - - - 8.4.0 - The class constants are now typed. - - - 8.2.0 - - The constant DateTimeInterface::ISO8601_EXPANDED - was added. - - - - 7.2.0 - - The class constants of DateTime are now defined - on DateTimeInterface. - - - - - - -
+
+ &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 8.4.0 + The class constants are now typed. + + + 8.2.0 + + The constant DateTimeInterface::ISO8601_EXPANDED + was added. + + + + 7.2.0 + + The class constants of DateTime are now defined + on DateTimeInterface. + + + + + + +
diff --git a/reference/datetime/functions/strptime.xml b/reference/datetime/functions/strptime.xml index 9adb25de60..b4e3de5315 100644 --- a/reference/datetime/functions/strptime.xml +++ b/reference/datetime/functions/strptime.xml @@ -150,9 +150,9 @@ - - &reftitle.examples; - + + &reftitle.examples; + <function>strptime</function> example @@ -166,9 +166,9 @@ echo "$strf\n"; print_r(strptime($strf, $format)); ?> ]]> - - &example.outputs.similar; - + + &example.outputs.similar; + ) ]]> - - - - + + + + - - &reftitle.notes; - ¬e.no-windows; - - - Internally, this function calls the strptime() - function provided by the system's C library. This function can exhibit - noticeably different behaviour across different operating systems. The - use of date_parse_from_format, which does not - suffer from these issues, is recommended. - - - - - "tm_sec" includes any leap seconds (currently upto 2 - a year). For more information on leap seconds, see the Wikipedia article - on leap seconds. - - - + + &reftitle.notes; + ¬e.no-windows; + + + Internally, this function calls the strptime() + function provided by the system's C library. This function can exhibit + noticeably different behaviour across different operating systems. The + use of date_parse_from_format, which does not + suffer from these issues, is recommended. + + + + + "tm_sec" includes any leap seconds (currently upto 2 + a year). For more information on leap seconds, see the Wikipedia article + on leap seconds. + + + - - &reftitle.seealso; - - - IntlDateFormatter::parse - DateTime::createFromFormat - checkdate - strftime - date_parse_from_format - - - - + + &reftitle.seealso; + + + IntlDateFormatter::parse + DateTime::createFromFormat + checkdate + strftime + date_parse_from_format + + + + diff --git a/reference/sync/syncmutex.xml b/reference/sync/syncmutex.xml index 4de277019a..2d89876424 100644 --- a/reference/sync/syncmutex.xml +++ b/reference/sync/syncmutex.xml @@ -12,12 +12,12 @@
&reftitle.intro; - A cross-platform, native implementation of named and unnamed countable mutex objects. + A cross-platform, native implementation of named and unnamed countable mutex objects. - A mutex is a mutual exclusion object that restricts access to a shared resource (e.g. a file) to a single instance. - Countable mutexes acquire the mutex a single time and internally track the number of times the mutex is locked. - The mutex is unlocked as soon as it goes out of scope or is unlocked the same number of times that it was locked. + A mutex is a mutual exclusion object that restricts access to a shared resource (e.g. a file) to a single instance. + Countable mutexes acquire the mutex a single time and internally track the number of times the mutex is locked. + The mutex is unlocked as soon as it goes out of scope or is unlocked the same number of times that it was locked.
diff --git a/reference/sync/syncreaderwriter.xml b/reference/sync/syncreaderwriter.xml index f6f815fd60..e8f7cde824 100644 --- a/reference/sync/syncreaderwriter.xml +++ b/reference/sync/syncreaderwriter.xml @@ -12,12 +12,12 @@
&reftitle.intro; - A cross-platform, native implementation of named and unnamed reader-writer objects. + A cross-platform, native implementation of named and unnamed reader-writer objects. - A reader-writer object allows many readers or one writer to access a resource. - This is an efficient solution for managing resources where access will primarily be - read-only but exclusive write access is occasionally necessary. + A reader-writer object allows many readers or one writer to access a resource. + This is an efficient solution for managing resources where access will primarily be + read-only but exclusive write access is occasionally necessary.
diff --git a/reference/sync/syncsemaphore.xml b/reference/sync/syncsemaphore.xml index 92c0af8cc7..0e349353f6 100644 --- a/reference/sync/syncsemaphore.xml +++ b/reference/sync/syncsemaphore.xml @@ -12,12 +12,12 @@
&reftitle.intro; - A cross-platform, native implementation of named and unnamed semaphore objects. + A cross-platform, native implementation of named and unnamed semaphore objects. - A semaphore restricts access to a limited resource to a limited number of instances. - Semaphores differ from mutexes in that they can allow more than one instance to - access a resource at one time while a mutex only allows one instance at a time. + A semaphore restricts access to a limited resource to a limited number of instances. + Semaphores differ from mutexes in that they can allow more than one instance to + access a resource at one time while a mutex only allows one instance at a time.
diff --git a/reference/sync/syncsharedmemory.xml b/reference/sync/syncsharedmemory.xml index 3824c315c1..2fc0cfaa1a 100644 --- a/reference/sync/syncsharedmemory.xml +++ b/reference/sync/syncsharedmemory.xml @@ -12,17 +12,17 @@
&reftitle.intro; - A cross-platform, native, consistent implementation of named shared memory - objects. + A cross-platform, native, consistent implementation of named shared memory + objects. - Shared memory lets two separate processes communicate without the need for - complex pipes or sockets. There are several integer-based shared memory - implementations for PHP. Named shared memory is an alternative. + Shared memory lets two separate processes communicate without the need for + complex pipes or sockets. There are several integer-based shared memory + implementations for PHP. Named shared memory is an alternative. - Synchronization objects (e.g. SyncMutex) are still required to protect most - uses of shared memory. + Synchronization objects (e.g. SyncMutex) are still required to protect most + uses of shared memory.
diff --git a/reference/sync/syncsharedmemory/read.xml b/reference/sync/syncsharedmemory/read.xml index d8ca332b5b..10b354b026 100644 --- a/reference/sync/syncsharedmemory/read.xml +++ b/reference/sync/syncsharedmemory/read.xml @@ -15,7 +15,7 @@ intlength - Copies data from named shared memory. + Copies data from named shared memory. @@ -26,12 +26,12 @@ start - The start/offset, in bytes, to begin reading. + The start/offset, in bytes, to begin reading. - If the value is negative, the starting position will begin at the specified - number of bytes from the end of the shared memory segment. + If the value is negative, the starting position will begin at the specified + number of bytes from the end of the shared memory segment. @@ -40,15 +40,15 @@ length - The number of bytes to read. + The number of bytes to read. - If unspecified, reading will stop at the end of the shared memory segment. + If unspecified, reading will stop at the end of the shared memory segment. - If the value is negative, reading will stop the specified number of bytes - from the end of the shared memory segment. + If the value is negative, reading will stop the specified number of bytes + from the end of the shared memory segment. @@ -59,7 +59,7 @@ &reftitle.returnvalues; - A string containing the data read from shared memory. + A string containing the data read from shared memory. diff --git a/reference/uopz/book.xml b/reference/uopz/book.xml index c69a2ce9d6..f36619cea5 100644 --- a/reference/uopz/book.xml +++ b/reference/uopz/book.xml @@ -9,11 +9,14 @@ &reftitle.intro; - The uopz - User Operations for Zend - extension exposes Zend Engine functionality normally used at compilation and execution time in order to - allow modification of the internal structures that represent PHP code, and for user code to interact with the VM. + The uopz - User Operations for Zend - + extension exposes Zend Engine functionality normally + used at compilation and execution time in order to + allow modification of the internal structures that represent PHP code, + and for user code to interact with the VM. - uopz supports the following activities: + uopz supports the following activities: Overloading some opcodes including ZEND_EXIT and ZEND_NEW @@ -27,7 +30,7 @@ - All of the activities supported are compatible with opcache + All of the activities supported are compatible with opcache diff --git a/reference/uopz/constants.xml b/reference/uopz/constants.xml index 6f12ac15ad..7ff31d9dae 100644 --- a/reference/uopz/constants.xml +++ b/reference/uopz/constants.xml @@ -16,7 +16,8 @@ - Invoked by exit() and die(), receives no arguments. Return boolean &true; to exit, &false; to continue + Invoked by exit() and die(), receives no arguments. + Return boolean &true; to exit, &false; to continue @@ -27,7 +28,8 @@ - Invoked by object construction, receives the class of object being created as the only argument + Invoked by object construction, + receives the class of object being created as the only argument @@ -38,7 +40,8 @@ - Invoked by the throw construct, receives the class of exception being thrown as the only argument + Invoked by the throw construct, + receives the class of exception being thrown as the only argument @@ -49,7 +52,8 @@ - Invoked upon composure, receives the class the name of the class being fetched as the only argument + Invoked upon composure, + receives the class the name of the class being fetched as the only argument @@ -60,7 +64,9 @@ - Invoked upon composure, receives the class the trait is being added to as the first argument, and the name of the trait as the second argument + Invoked upon composure, + receives the class the trait is being added to as the first argument, + and the name of the trait as the second argument @@ -71,7 +77,9 @@ - Invoked upon composure, receives the class the interface is being added to as the first argument, and the name of the interface as the second argument + Invoked upon composure, + receives the class the interface is being added to as the first argument, + and the name of the interface as the second argument @@ -82,15 +90,18 @@ - Invoked by instanceof operator, receives the object being verified as the first argument, and the name of the class which that object should be as the second argument + Invoked by instanceof operator, + receives the object being verified as the first argument, + and the name of the class which that object should be as the second argument - The following constants control the VM's behaviour after a user handler is invoked, be extremely careful! - These constants are removed as of uopz 5.0.0. + The following constants control the VM's behaviour after a user handler is invoked, + be extremely careful! + These constants are removed as of uopz 5.0.0. @@ -101,7 +112,7 @@ - Advance 1 opcode and continuue + Advance 1 opcode and continuue @@ -112,7 +123,7 @@ - Enter into new op_array without recursion + Enter into new op_array without recursion @@ -123,7 +134,7 @@ - Return to calling op_array within the same executor + Return to calling op_array within the same executor @@ -134,7 +145,7 @@ - Dispatch to original opcode handler + Dispatch to original opcode handler @@ -145,7 +156,7 @@ - Dispatch to a specific handler (OR'd with ZEND opcode constant) + Dispatch to a specific handler (OR'd with ZEND opcode constant) @@ -156,14 +167,14 @@ - Exit from executor (return from function) + Exit from executor (return from function) - The following modifiers are registered as constants by uopz + The following modifiers are registered as constants by uopz @@ -174,7 +185,7 @@ - Mark function as public, the default + Mark function as public, the default @@ -185,7 +196,7 @@ - Mark function as protected + Mark function as protected @@ -193,10 +204,10 @@ ZEND_ACC_PRIVATE (int) - + - - Mark function as private + + Mark function as private @@ -204,10 +215,10 @@ ZEND_ACC_STATIC (int) - + - - Mark function as static + + Mark function as static @@ -217,20 +228,20 @@ (int) - - Mark function as final + + Mark function as final - + ZEND_ACC_ABSTRACT (int) - - + + - Mark function as abstract - + Mark function as abstract + @@ -240,7 +251,7 @@ - Dummy registered for consistency, the default kind of class entry. + Dummy registered for consistency, the default kind of class entry. Removed as of uopz 5.0.0. @@ -251,11 +262,11 @@ (int) - - Mark class as interface. + + Mark class as interface. Removed as of uopz 5.0.0. - + @@ -263,11 +274,11 @@ (int) - - Mark class as trait. + + Mark class as trait. Removed as of uopz 5.0.0. - + @@ -276,7 +287,7 @@ - Used for getting flags only. + Used for getting flags only. Removed as of uopz 5.0.0. diff --git a/reference/uopz/functions/uopz-backup.xml b/reference/uopz/functions/uopz-backup.xml index 66c5ffa1ee..49b4dbd743 100644 --- a/reference/uopz/functions/uopz-backup.xml +++ b/reference/uopz/functions/uopz-backup.xml @@ -23,7 +23,7 @@ stringfunction - Backup a function at runtime, to be restored on shutdown + Backup a function at runtime, to be restored on shutdown @@ -35,7 +35,7 @@ class - The name of the class containing the function to backup + The name of the class containing the function to backup @@ -43,7 +43,7 @@ function - The name of the function + The name of the function diff --git a/reference/uopz/functions/uopz-compose.xml b/reference/uopz/functions/uopz-compose.xml index f21ae045b4..88b5a65a1b 100644 --- a/reference/uopz/functions/uopz-compose.xml +++ b/reference/uopz/functions/uopz-compose.xml @@ -22,7 +22,7 @@ intflags - Creates a new class of the given name that implements, extends, or uses all of the provided classes + Creates a new class of the given name that implements, extends, or uses all of the provided classes @@ -33,7 +33,7 @@ name - A legal class name + A legal class name @@ -41,7 +41,7 @@ classes - An array of class, interface and trait names + An array of class, interface and trait names @@ -49,23 +49,23 @@ methods - An associative array of methods, values are either closures or [modifiers => closure] - - + An associative array of methods, values are either closures or [modifiers => closure] + + - + properties - An associative array of properties, keys are names, values are modifiers - + An associative array of properties, keys are names, values are modifiers + - + flags - Entry type, by default ZEND_ACC_CLASS + Entry type, by default ZEND_ACC_CLASS @@ -75,7 +75,7 @@ &reftitle.returnvalues; - + @@ -92,8 +92,8 @@ interface myInterface {} uopz_compose( Composed::class, [ - myClass::class, - myTrait::class, + myClass::class, + myTrait::class, myInterface::class ], [ "__construct" => function() { diff --git a/reference/uopz/functions/uopz-copy.xml b/reference/uopz/functions/uopz-copy.xml index f83cc4aed8..ea9e85a692 100644 --- a/reference/uopz/functions/uopz-copy.xml +++ b/reference/uopz/functions/uopz-copy.xml @@ -23,7 +23,7 @@ stringfunction - Copy a function by name + Copy a function by name @@ -35,7 +35,7 @@ class - The name of the class containing the function to copy + The name of the class containing the function to copy @@ -43,7 +43,7 @@ function - The name of the function + The name of the function diff --git a/reference/uopz/functions/uopz-delete.xml b/reference/uopz/functions/uopz-delete.xml index c5b6bcb815..fab0903092 100644 --- a/reference/uopz/functions/uopz-delete.xml +++ b/reference/uopz/functions/uopz-delete.xml @@ -23,7 +23,7 @@ stringfunction - Deletes a function or method + Deletes a function or method diff --git a/reference/uopz/functions/uopz-extend.xml b/reference/uopz/functions/uopz-extend.xml index 2c949b1078..465f63b1b9 100644 --- a/reference/uopz/functions/uopz-extend.xml +++ b/reference/uopz/functions/uopz-extend.xml @@ -15,7 +15,7 @@ stringparent - Makes class extend parent + Makes class extend parent @@ -26,7 +26,7 @@ class - The name of the class to extend + The name of the class to extend @@ -34,7 +34,7 @@ parent - The name of the class to inherit + The name of the class to inherit diff --git a/reference/uopz/functions/uopz-flags.xml b/reference/uopz/functions/uopz-flags.xml index bec36c3189..e92880c7bc 100644 --- a/reference/uopz/functions/uopz-flags.xml +++ b/reference/uopz/functions/uopz-flags.xml @@ -21,7 +21,7 @@ intflagsPHP_INT_MAX - Get or set the flags on a class or function entry at runtime + Get or set the flags on a class or function entry at runtime @@ -33,7 +33,7 @@ class - The name of a class + The name of a class @@ -51,7 +51,7 @@ flags - A valid set of ZEND_ACC_ flags. + A valid set of ZEND_ACC_ flags. If omitted, uopz_flags acts as getter. @@ -62,7 +62,7 @@ &reftitle.returnvalues; - If setting, returns old flags, else returns flags + If setting, returns old flags, else returns flags diff --git a/reference/uopz/functions/uopz-function.xml b/reference/uopz/functions/uopz-function.xml index a2c9bc4aa0..79b2088857 100644 --- a/reference/uopz/functions/uopz-function.xml +++ b/reference/uopz/functions/uopz-function.xml @@ -27,7 +27,7 @@ intmodifiers - Creates a function at runtime + Creates a function at runtime @@ -39,7 +39,7 @@ class - The name of the class to receive the new function + The name of the class to receive the new function @@ -47,7 +47,7 @@ function - The name of the function + The name of the function @@ -55,7 +55,7 @@ handler - The Closure for the function + The Closure for the function @@ -63,7 +63,7 @@ modifiers - The modifiers for the function, by default copied or ZEND_ACC_PUBLIC + The modifiers for the function, by default copied or ZEND_ACC_PUBLIC diff --git a/reference/uopz/functions/uopz-get-mock.xml b/reference/uopz/functions/uopz-get-mock.xml index 13f532d489..d881dd1e51 100644 --- a/reference/uopz/functions/uopz-get-mock.xml +++ b/reference/uopz/functions/uopz-get-mock.xml @@ -25,18 +25,18 @@ class - The name of the mocked class. + The name of the mocked class. - &reftitle.returnvalues; - - Either a string containing the name of the mock, or an object, - or &null; if no mock has been set. - + &reftitle.returnvalues; + + Either a string containing the name of the mock, or an object, + or &null; if no mock has been set. + diff --git a/reference/uopz/functions/uopz-get-return.xml b/reference/uopz/functions/uopz-get-return.xml index e051e68130..41fed270e6 100644 --- a/reference/uopz/functions/uopz-get-return.xml +++ b/reference/uopz/functions/uopz-get-return.xml @@ -30,7 +30,7 @@ class - The name of the class containing the function + The name of the class containing the function @@ -38,7 +38,7 @@ function - The name of the function + The name of the function @@ -48,7 +48,7 @@ &reftitle.returnvalues; - The return value or Closure previously set. + The return value or Closure previously set. diff --git a/reference/uopz/functions/uopz-implement.xml b/reference/uopz/functions/uopz-implement.xml index 13016febf0..5fd668acf8 100644 --- a/reference/uopz/functions/uopz-implement.xml +++ b/reference/uopz/functions/uopz-implement.xml @@ -15,7 +15,7 @@ stringinterface - Makes class implement interface + Makes class implement interface diff --git a/reference/uopz/functions/uopz-overload.xml b/reference/uopz/functions/uopz-overload.xml index 8d9f31784e..0539df8f33 100644 --- a/reference/uopz/functions/uopz-overload.xml +++ b/reference/uopz/functions/uopz-overload.xml @@ -19,7 +19,7 @@ Callablecallable - Overloads the specified opcode with the user defined function + Overloads the specified opcode with the user defined function @@ -31,7 +31,7 @@ opcode - A valid opcode, see constants for details of supported codes + A valid opcode, see constants for details of supported codes diff --git a/reference/uopz/functions/uopz-redefine.xml b/reference/uopz/functions/uopz-redefine.xml index e0a6f8dda2..6bece72b59 100644 --- a/reference/uopz/functions/uopz-redefine.xml +++ b/reference/uopz/functions/uopz-redefine.xml @@ -21,7 +21,7 @@ mixedvalue - Redefines the given constant as value + Redefines the given constant as value @@ -32,7 +32,7 @@ class - The name of the class containing the constant + The name of the class containing the constant @@ -40,7 +40,7 @@ constant - The name of the constant + The name of the constant @@ -48,7 +48,7 @@ value - The new value for the constant, must be a valid type for a constant variable + The new value for the constant, must be a valid type for a constant variable diff --git a/reference/uopz/functions/uopz-rename.xml b/reference/uopz/functions/uopz-rename.xml index e99c62d35a..064747c993 100644 --- a/reference/uopz/functions/uopz-rename.xml +++ b/reference/uopz/functions/uopz-rename.xml @@ -25,11 +25,11 @@ stringrename - Renames function to rename + Renames function to rename - If both functions exist, this effectively swaps their names + If both functions exist, this effectively swaps their names @@ -41,7 +41,7 @@ class - The name of the class containing the function + The name of the class containing the function @@ -49,7 +49,7 @@ function - The name of an existing function + The name of an existing function @@ -57,7 +57,7 @@ rename - The new name for the function + The new name for the function diff --git a/reference/uopz/functions/uopz-restore.xml b/reference/uopz/functions/uopz-restore.xml index ecbf3d8901..80a6786404 100644 --- a/reference/uopz/functions/uopz-restore.xml +++ b/reference/uopz/functions/uopz-restore.xml @@ -23,7 +23,7 @@ stringfunction - Restore a previously backed up function + Restore a previously backed up function @@ -35,7 +35,7 @@ class - The name of the class containing the function to restore + The name of the class containing the function to restore @@ -43,7 +43,7 @@ function - The name of the function + The name of the function diff --git a/reference/uopz/functions/uopz-set-return.xml b/reference/uopz/functions/uopz-set-return.xml index da2d5b0e89..e0400cc038 100644 --- a/reference/uopz/functions/uopz-set-return.xml +++ b/reference/uopz/functions/uopz-set-return.xml @@ -41,7 +41,7 @@ class - The name of the class containing the function + The name of the class containing the function @@ -49,7 +49,7 @@ function - The name of an existing function + The name of an existing function @@ -57,7 +57,7 @@ value - The value the function should return. If a Closure is provided and the execute flag is set, the Closure will be executed in place of the original function. + The value the function should return. If a Closure is provided and the execute flag is set, the Closure will be executed in place of the original function. @@ -65,7 +65,7 @@ execute - If true, and a Closure was provided as the value, the Closure will be executed in place of the original function. + If true, and a Closure was provided as the value, the Closure will be executed in place of the original function. @@ -75,7 +75,7 @@ &reftitle.returnvalues; - True if succeeded, false otherwise. + True if succeeded, false otherwise. diff --git a/reference/uopz/functions/uopz-undefine.xml b/reference/uopz/functions/uopz-undefine.xml index 9e305c0895..ef16d3467b 100644 --- a/reference/uopz/functions/uopz-undefine.xml +++ b/reference/uopz/functions/uopz-undefine.xml @@ -19,7 +19,7 @@ stringconstant - Removes the constant at runtime + Removes the constant at runtime @@ -30,7 +30,7 @@ class - The name of the class containing constant + The name of the class containing constant @@ -38,7 +38,7 @@ constant - The name of an existing constant + The name of an existing constant diff --git a/reference/uopz/functions/uopz-unset-mock.xml b/reference/uopz/functions/uopz-unset-mock.xml index c5a0f739d4..fc83562a02 100644 --- a/reference/uopz/functions/uopz-unset-mock.xml +++ b/reference/uopz/functions/uopz-unset-mock.xml @@ -25,7 +25,7 @@ class - The name of the mocked class. + The name of the mocked class. diff --git a/reference/uopz/functions/uopz-unset-return.xml b/reference/uopz/functions/uopz-unset-return.xml index 22ff932cc1..a9437042dd 100644 --- a/reference/uopz/functions/uopz-unset-return.xml +++ b/reference/uopz/functions/uopz-unset-return.xml @@ -30,7 +30,7 @@ class - The name of the class containing the function + The name of the class containing the function @@ -38,7 +38,7 @@ function - The name of the function + The name of the function @@ -48,7 +48,7 @@ &reftitle.returnvalues; - True on success + True on success diff --git a/reference/uopz/setup.xml b/reference/uopz/setup.xml index f4583e74b5..076648b53a 100644 --- a/reference/uopz/setup.xml +++ b/reference/uopz/setup.xml @@ -15,12 +15,12 @@ &reftitle.install; uopz releases are hosted by PECL and the source code by - github, + github, the easiest route to installation is the normal PECL route: &url.pecl.package;uopz. - Windows users can download prebuilt release binaries from the PECL website. + Windows users can download prebuilt release binaries from the PECL website. As of uopz 5.0.0 the extension must be loaded as