summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_fill_object.phpt
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-10-14 18:03:31 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-10-14 19:46:15 +0200
commitd7a3edd45db8d91ddf09cba7c594c63e63f62709 (patch)
treeef4fe3e4794260b362dad72d3542fdbef0169b8e /ext/standard/tests/array/array_fill_object.phpt
parentb0708fa2e7b31f1fbd9539486a35d33643e62461 (diff)
downloadphp-git-d7a3edd45db8d91ddf09cba7c594c63e63f62709.tar.gz
Trim trailing whitespace in *.phpt
Diffstat (limited to 'ext/standard/tests/array/array_fill_object.phpt')
-rw-r--r--ext/standard/tests/array/array_fill_object.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/standard/tests/array/array_fill_object.phpt b/ext/standard/tests/array/array_fill_object.phpt
index bed1cc210f..c784b54415 100644
--- a/ext/standard/tests/array/array_fill_object.phpt
+++ b/ext/standard/tests/array/array_fill_object.phpt
@@ -3,7 +3,7 @@ Test array_fill() function : usage variations - various object values for 'val'
--FILE--
<?php
/* Prototype : array array_fill(int $start_key, int $num, mixed $val)
- * Description: Create an array containing num elements starting with index start_key each initialized to val
+ * Description: Create an array containing num elements starting with index start_key each initialized to val
* Source code: ext/standard/array.c
*/
@@ -13,7 +13,7 @@ Test array_fill() function : usage variations - various object values for 'val'
echo "*** Testing array_fill() : usage variations ***\n";
-// Initialise function arguments not being substituted
+// Initialise function arguments not being substituted
$start_key = 0;
$num = 2;
@@ -22,7 +22,7 @@ class Test
{
}
-//class with public member, static member , constant and consturctor to initialize the public member
+//class with public member, static member , constant and consturctor to initialize the public member
class Test1
{
const test1_constant = "test1";
@@ -78,7 +78,7 @@ class Child_test2 extends Test2
}
}
-// class with protected member, static member, constant and consturctor to initialize the protected member
+// class with protected member, static member, constant and consturctor to initialize the protected member
class Test3
{
const test3_constant = "test3";
@@ -135,7 +135,7 @@ class Child_test4 extends Test4
}
}
-// abstract class with public, private, protected members
+// abstract class with public, private, protected members
abstract class AbstractClass
{
public $member1;
@@ -187,7 +187,7 @@ $objects = array(
/* 11 */ new Template1()
);
-// loop through each element of the array for 'val' argument
+// loop through each element of the array for 'val' argument
// check the working of array_fill()
echo "--- Testing array_fill() with different object values for 'val' argument ---\n";
$counter = 1;