Skip to content

Commit ea49cf1

Browse files
committed
Remove docker from ci workflow
1 parent 564f6ff commit ea49cf1

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v2
18-
- name: Start docker containers
19-
run: docker-compose up -d
2018
- name: Install composer dependencies
2119
run: composer install
2220
- name: Run tests

src/ConsoleLog.php

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace Lean\ConsoleLog;
4+
5+
/**
6+
* @method void consoleLog(...$data) Log value(s) to the browser developer console.
7+
*
8+
* @see \Lean\ConsoleLog\ConsoleLogServiceProvider
9+
*/
10+
trait ConsoleLog
11+
{
12+
}

src/ConsoleLogServiceProvider.php

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Lean\ConsoleLog;
44

5-
use Illuminate\Support\Facades\Blade;
65
use Illuminate\Support\ServiceProvider;
76
use Livewire\Component;
87

0 commit comments

Comments
 (0)