Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
AzGasim authored and github-actions[bot] committed Nov 27, 2024
1 parent e7b604b commit 0f055fa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class extends Migration
{
/**
* Run the migrations.
*/
Expand Down
1 change: 1 addition & 0 deletions packages/press/wordpress/plugins/moox-press/moox-press.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
Plugin Name: Moox Press
Description: Plugin for integrating WordPress with Laravel
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/LandingPageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

class LandingPageTest extends TestCase
{
public function testHealthyResponse()
public function test_healthy_response()
{
$response = $this->get('/');

$response->assertStatus(200);
}

public function testContainsWelcome()
public function test_contains_welcome()
{
$response = $this->get('/');

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class ExampleTest extends TestCase
*
* @return void
*/
public function testThatTrueIsTrue()
public function test_that_true_is_true()
{
$this->assertTrue(true);
}
Expand Down

0 comments on commit 0f055fa

Please sign in to comment.