Skip to content

Commit 09d246e

Browse files
committed
Fixed typos
1 parent 8bd4014 commit 09d246e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/MysqlConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace Grimzy\LaravelSpatial;
33

4-
class MysqlConnection extends \Illuminate\Database\MysqlConnection
4+
class MysqlConnection extends \Illuminate\Database\MySqlConnection
55
{
66
// public function __construct($pdo, $database = '', $tablePrefix = '', array $config = [])
77
// {

src/Schema/Builder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
namespace Grimzy\LaravelSpatial\Schema;
33

44
use Closure;
5-
use Illuminate\Database\Schema\MysqlBuilder;
5+
use Illuminate\Database\Schema\MySqlBuilder;
66

7-
class Builder extends MysqlBuilder
7+
class Builder extends MySqlBuilder
88
{
99
/**
1010
* Create a new command set with a Closure.

0 commit comments

Comments
 (0)