Completed
Push — master ( c1bd80...7840cd )
by CodexShaper
11:04 queued 12s
created

Create_Customers_Table::down()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
/**
3
 * This is the example of database migration.
4
 *
5
 * @link       https://github.com/maab16
6
 * @since      1.0.0
7
 *
8
 * @package    WPB
9
 * @subpackage WPB/database/migrations
10
 */
11
12
use Illuminate\Database\Migrations\Migration;
13
use Illuminate\Database\Schema\Blueprint;
14
use CodexShaper\Database\Facades\Schema;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, Schema. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
15
16
/**
17
 * Create customers table.
18
 *
19
 * @since      1.0.0
20
 * @package    WPB
21
 * @subpackage WPB/database/migrations
22
 * @author     Md Abu Ahsan basir <[email protected]>
23
 */
24
class Create_Customers_Table extends Migration {
25
26
	/**
27
	 * Run the migrations.
28
	 *
29
	 * @return void
30
	 */
31
	public function up() {
32
		Schema::create(
33
			'customers',
34
			function ( Blueprint $table ) {
35
				$table->id();
36
				$table->string( 'name' );
37
				$table->string( 'email' )->unique();
38
				$table->timestamp( 'email_verified_at' )->nullable();
39
				$table->string( 'password' );
40
				$table->rememberToken();
41
				$table->timestamps();
42
			}
43
		);
44
	}
45
46
	/**
47
	 * Reverse the migrations.
48
	 *
49
	 * @return void
50
	 */
51
	public function down() {
52
		Schema::dropIfExists( 'customers' );
53
	}
54
}
55