File tree Expand file tree Collapse file tree 5 files changed +1
-7
lines changed Expand file tree Collapse file tree 5 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public function image($image = null): string
52
52
if (is_string ($ image ) && file_exists ($ image )) {
53
53
$ type = pathinfo ($ image , PATHINFO_EXTENSION );
54
54
$ data = file_get_contents ($ image );
55
- $ dataUri = "data:image/ {$ type };base64, " . base64_encode ($ data );
55
+ $ dataUri = "data:image/ {$ type };base64, " . base64_encode ($ data );
56
56
}
57
57
58
58
$ this ->client ->post ('clipboard/image ' , [
Original file line number Diff line number Diff line change 2
2
3
3
namespace Native \Laravel \MenuBar ;
4
4
5
- use Illuminate \Support \Facades \URL ;
6
- use Illuminate \Support \Str ;
7
5
use Native \Laravel \Client \Client ;
8
6
use Native \Laravel \Concerns \HasDimensions ;
9
7
use Native \Laravel \Concerns \HasVibrancy ;
Original file line number Diff line number Diff line change 3
3
namespace Native \Laravel ;
4
4
5
5
use Illuminate \Support \Arr ;
6
- use Illuminate \Support \Facades \Config ;
7
- use Illuminate \Support \Facades \Storage ;
8
6
use Native \Laravel \Commands \LoadStartupConfigurationCommand ;
9
7
use Native \Laravel \Commands \MinifyApplicationCommand ;
10
8
use Native \Laravel \Logging \LogWatcher ;
Original file line number Diff line number Diff line change 2
2
3
3
namespace Native \Laravel ;
4
4
5
- use Illuminate \Support \Facades \URL ;
6
5
use Native \Laravel \Client \Client ;
7
6
8
7
class Window
Original file line number Diff line number Diff line change 2
2
3
3
namespace Native \Laravel \Windows ;
4
4
5
- use Illuminate \Support \Facades \URL ;
6
5
use Native \Laravel \Client \Client ;
7
6
use Native \Laravel \Concerns \DetectsWindowId ;
8
7
You can’t perform that action at this time.
0 commit comments