Skip to content

Commit d434325

Browse files
committed
typos
1 parent f2cc01d commit d434325

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Utils/Image.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class Image
116116
/** @deprecated */
117117
const ENLARGE = 0;
118118

119-
static private $formats = [self::JPEG => 'jpeg', self::PNG => 'png', self::GIF => 'gif', self::WEBP => 'webp'];
119+
private static $formats = [self::JPEG => 'jpeg', self::PNG => 'png', self::GIF => 'gif', self::WEBP => 'webp'];
120120

121121
/** @var resource */
122122
private $image;

tests/Utils/Object.events.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TestClass extends Nette\Object
1313
{
1414
public $onPublic;
1515

16-
static public $onPublicStatic;
16+
public static $onPublicStatic;
1717

1818
protected $onProtected;
1919

tests/Utils/SmartObject.events.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TestClass
1515

1616
public $onPublic;
1717

18-
static public $onPublicStatic;
18+
public static $onPublicStatic;
1919

2020
protected $onProtected;
2121

0 commit comments

Comments
 (0)