Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | <?php |
||
| 9 | class install_userprovider_table extends Migration implements MigrationInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Execute actions when migration is up |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function up() |
||
| 16 | { |
||
| 17 | $this->getSchema()->create('user_providers', function($table) { |
||
| 18 | $table->increments('id'); |
||
| 19 | $table->string('user_id'); |
||
| 20 | $table->string('provider_name', 255); |
||
| 21 | $table->string('provider_id', 255); |
||
| 22 | $table->timestamps(); |
||
| 23 | }); |
||
| 24 | parent::up(); |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Seed created table via up() method with some data |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function seed() |
||
| 32 | { |
||
| 33 | |||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Execute actions when migration is down |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | public function down() |
||
| 44 | } |
||
| 45 | } |