Skip to content

Commit 338df74

Browse files
committed
changed some param names to match with PHP
1 parent 8fd0adf commit 338df74

File tree

1 file changed

+6
-6
lines changed
  • src/Peachpie.Library.Graphics

1 file changed

+6
-6
lines changed

src/Peachpie.Library.Graphics/Exif.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ public static class Exif
3434
/// This is alternative alias of <see cref="exif_read_data(string,string,bool,bool)"/>.
3535
/// </summary>
3636
[return: CastToFalse]
37-
public static PhpArray read_exif_data(Context ctx, string filename, string sections_needed = null, bool sub_arrays = false, bool thumbnail = false)
37+
public static PhpArray read_exif_data(Context ctx, string filename, string sections_needed = null, bool sub_arrays = false, bool read_thumbnail = false)
3838
{
39-
return exif_read_data(ctx, filename, sections_needed, sub_arrays, thumbnail);
39+
return exif_read_data(ctx, filename, sections_needed, sub_arrays, read_thumbnail);
4040
}
4141

4242
#endregion
@@ -58,11 +58,11 @@ public static PhpArray read_exif_data(Context ctx, string filename, string secti
5858
/// COMMENT: Comment headers of JPEG images.
5959
/// EXIF: The EXIF section is a sub section of IFD0. It contains more detailed information about an image. Most of these entries are digital camera related.</param>
6060
/// <param name="sub_arrays">Specifies whether or not each section becomes an array. The sections COMPUTED, THUMBNAIL, and COMMENT always become arrays as they may contain values whose names conflict with other sections.</param>
61-
/// <param name="thumbnail">When set to <c>TRUE</c> the thumbnail itself is read. Otherwise, only the tagged data is read.</param>
61+
/// <param name="read_thumbnail">When set to <c>TRUE</c> the thumbnail itself is read. Otherwise, only the tagged data is read.</param>
6262
/// <returns>It returns an associative array where the array indexes are the header names and the array values are the values associated with those headers.
6363
/// If no data can be returned, <c>FALSE</c> is returned.</returns>
6464
[return: CastToFalse]
65-
public static PhpArray exif_read_data(Context ctx, string filename, string sections_needed = null, bool sub_arrays = false, bool thumbnail = false)
65+
public static PhpArray exif_read_data(Context ctx, string filename, string sections_needed = null, bool sub_arrays = false, bool read_thumbnail = false)
6666
{
6767
if (string.IsNullOrEmpty(filename))
6868
{
@@ -80,9 +80,9 @@ public static PhpArray exif_read_data(Context ctx, string filename, string secti
8080
PhpException.ArgumentValueNotSupported(nameof(sub_arrays), sub_arrays);
8181
}
8282

83-
if (thumbnail)
83+
if (read_thumbnail)
8484
{
85-
PhpException.ArgumentValueNotSupported(nameof(thumbnail), thumbnail);
85+
PhpException.ArgumentValueNotSupported(nameof(read_thumbnail), read_thumbnail);
8686
}
8787

8888
PhpArray array = new PhpArray();

0 commit comments

Comments
 (0)