You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-16Lines changed: 15 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,12 +90,12 @@ $config = [
90
90
91
91
'config' => [
92
92
'minImageWidth' => 16,
93
-
'minImageHeight' => 16,
94
-
'imagesBlacklist' => null,
95
-
'getBiggerImage' => false,
96
-
'getBiggerIcon' => false,
93
+
'minImageHeight' => 16,
94
+
'imagesBlacklist' => null,
95
+
'getBiggerImage' => false,
96
+
'getBiggerIcon' => false,
97
97
]
98
-
]
98
+
]
99
99
];
100
100
```
101
101
@@ -146,11 +146,10 @@ The resolver configuration is defined under the "resolver" key and it has two op
146
146
* config: The options passed to the class. If you use the default curl class, the config are the same than the [curl_setopt PHP function](http://php.net/manual/en/function.curl-setopt.php)
147
147
148
148
```php
149
-
150
149
// CURL
151
150
$config = [
152
151
'resolver' => [
153
-
'class' => 'Embed\\RequestResolvers\\Curl' // The default resolver used
152
+
'class' => 'Embed\\RequestResolvers\\Curl', // The default resolver used
154
153
155
154
'config' => [
156
155
CURLOPT_MAXREDIRS => 20,
@@ -195,7 +194,7 @@ Like the resolver class, you can provide your own image class (it must implement
195
194
//CURL
196
195
$config = [
197
196
'image' => [
198
-
'class' => 'Embed\\ImageInfo\\Curl' //The default imageInfo used
197
+
'class' => 'Embed\\ImageInfo\\Curl', //The default imageInfo used
0 commit comments