@@ -44,49 +44,49 @@ class Configuration
44
44
private $ migrationsDatabase ;
45
45
46
46
/**
47
- * The migration database name to track versions in
47
+ * The migration database name to track versions in.
48
48
*
49
49
* @var string
50
50
*/
51
51
private $ migrationsDatabaseName ;
52
52
53
53
/**
54
- * Flag for whether or not the migration collection has been created
54
+ * Flag for whether or not the migration collection has been created.
55
55
*
56
- * @var boolean
56
+ * @var bool
57
57
*/
58
58
private $ migrationCollectionCreated = false ;
59
59
60
60
/**
61
- * The migration collection name to track versions in
61
+ * The migration collection name to track versions in.
62
62
*
63
63
* @var string
64
64
*/
65
65
private $ migrationsCollectionName = 'antimattr_migration_versions ' ;
66
66
67
67
/**
68
- * The path to a directory where new migration classes will be written
68
+ * The path to a directory where new migration classes will be written.
69
69
*
70
70
* @var string
71
71
*/
72
72
private $ migrationsDirectory ;
73
73
74
74
/**
75
- * Namespace the migration classes live in
75
+ * Namespace the migration classes live in.
76
76
*
77
77
* @var string
78
78
*/
79
79
private $ migrationsNamespace ;
80
80
81
- /**
82
- * The path to a directory where mongo console scripts are
81
+ /**
82
+ * The path to a directory where mongo console scripts are.
83
83
*
84
84
* @var string
85
85
*/
86
86
private $ migrationsScriptDirectory ;
87
87
88
88
/**
89
- * Used by Console Commands and Output Writer
89
+ * Used by Console Commands and Output Writer.
90
90
*
91
91
* @var string
92
92
*/
@@ -116,7 +116,7 @@ public function __construct(Connection $connection, OutputWriter $outputWriter =
116
116
}
117
117
118
118
/**
119
- * Returns a timestamp version as a formatted date
119
+ * Returns a timestamp version as a formatted date.
120
120
*
121
121
* @param string $version
122
122
*
@@ -244,7 +244,7 @@ public function getMigrationsDirectory()
244
244
}
245
245
246
246
/**
247
- * Set the migrations namespace
247
+ * Set the migrations namespace.
248
248
*
249
249
* @param string $migrationsNamespace The migrations namespace
250
250
*/
@@ -312,15 +312,15 @@ public function getName()
312
312
}
313
313
314
314
/**
315
- * @return integer
315
+ * @return int
316
316
*/
317
317
public function getNumberOfAvailableMigrations ()
318
318
{
319
319
return count ($ this ->migrations );
320
320
}
321
321
322
322
/**
323
- * @return integer
323
+ * @return int
324
324
*/
325
325
public function getNumberOfExecutedMigrations ()
326
326
{
@@ -343,8 +343,8 @@ public function getOutputWriter()
343
343
* Register a single migration version to be executed by a AbstractMigration
344
344
* class.
345
345
*
346
- * @param string $version The version of the migration in the format YYYYMMDDHHMMSS.
347
- * @param string $class The migration class to execute for the version.
346
+ * @param string $version The version of the migration in the format YYYYMMDDHHMMSS
347
+ * @param string $class The migration class to execute for the version
348
348
*
349
349
* @return Version
350
350
*
@@ -393,9 +393,9 @@ public function registerMigrations(array $migrations)
393
393
* with the pattern VersionYYYYMMDDHHMMSS.php as the filename and registers
394
394
* them as migrations.
395
395
*
396
- * @param string $path The root directory to where some migration classes live.
396
+ * @param string $path The root directory to where some migration classes live
397
397
*
398
- * @return Version[] The array of migrations registered.
398
+ * @return Version[] The array of migrations registered
399
399
*/
400
400
public function registerMigrationsFromDirectory ($ path )
401
401
{
@@ -419,11 +419,11 @@ public function registerMigrationsFromDirectory($path)
419
419
/**
420
420
* Returns the Version instance for a given version in the format YYYYMMDDHHMMSS.
421
421
*
422
- * @param string $version The version string in the format YYYYMMDDHHMMSS.
422
+ * @param string $version The version string in the format YYYYMMDDHHMMSS
423
423
*
424
424
* @return AntiMattr\MongoDB\Migrations\Version
425
425
*
426
- * @throws AntiMattr\MongoDB\Migrations\Exception\UnknownVersionException Throws exception if migration version does not exist.
426
+ * @throws AntiMattr\MongoDB\Migrations\Exception\UnknownVersionException Throws exception if migration version does not exist
427
427
*/
428
428
public function getVersion ($ version )
429
429
{
@@ -439,19 +439,19 @@ public function getVersion($version)
439
439
*
440
440
* @param string $version
441
441
*
442
- * @return boolean
442
+ * @return bool
443
443
*/
444
444
public function hasVersion ($ version )
445
445
{
446
446
return isset ($ this ->migrations [$ version ]);
447
447
}
448
448
449
449
/**
450
- * Check if a version has been migrated or not yet
450
+ * Check if a version has been migrated or not yet.
451
451
*
452
452
* @param AntiMattr\MongoDB\Migrations\Version $version
453
453
*
454
- * @return boolean
454
+ * @return bool
455
455
*/
456
456
public function hasVersionMigrated (Version $ version )
457
457
{
@@ -495,7 +495,7 @@ public function getCurrentVersion()
495
495
/**
496
496
* Returns the latest available migration version.
497
497
*
498
- * @return string The version string in the format YYYYMMDDHHMMSS.
498
+ * @return string The version string in the format YYYYMMDDHHMMSS
499
499
*/
500
500
public function getLatestVersion ()
501
501
{
@@ -508,7 +508,7 @@ public function getLatestVersion()
508
508
/**
509
509
* Create the migration collection to track migrations with.
510
510
*
511
- * @return boolean Whether or not the collection was created.
511
+ * @return bool Whether or not the collection was created
512
512
*/
513
513
public function createMigrationCollection ()
514
514
{
@@ -527,10 +527,10 @@ public function createMigrationCollection()
527
527
* Returns the array of migrations to executed based on the given direction
528
528
* and target version number.
529
529
*
530
- * @param string $direction The direction we are migrating.
531
- * @param string $to The version to migrate to.
530
+ * @param string $direction The direction we are migrating
531
+ * @param string $to The version to migrate to
532
532
*
533
- * @return Version[] $migrations The array of migrations we can execute.
533
+ * @return Version[] $migrations The array of migrations we can execute
534
534
*/
535
535
public function getMigrationsToExecute ($ direction , $ to )
536
536
{
@@ -560,17 +560,17 @@ public function getMigrationsToExecute($direction, $to)
560
560
* Check if we should execute a migration for a given direction and target
561
561
* migration version.
562
562
*
563
- * @param string $direction The direction we are migrating.
564
- * @param Version $version The Version instance to check.
565
- * @param string $to The version we are migrating to.
566
- * @param array $migrated Migrated versions array.
563
+ * @param string $direction The direction we are migrating
564
+ * @param Version $version The Version instance to check
565
+ * @param string $to The version we are migrating to
566
+ * @param array $migrated Migrated versions array
567
567
*
568
- * @return boolean
568
+ * @return bool
569
569
*/
570
570
private function shouldExecuteMigration ($ direction , Version $ version , $ to , $ migrated )
571
571
{
572
572
if ($ direction === 'down ' ) {
573
- if ( ! in_array ($ version ->getVersion (), $ migrated )) {
573
+ if (! in_array ($ version ->getVersion (), $ migrated )) {
574
574
return false ;
575
575
}
576
576
@@ -587,7 +587,7 @@ private function shouldExecuteMigration($direction, Version $version, $to, $migr
587
587
}
588
588
589
589
/**
590
- * Validation that this instance has all the required properties configured
590
+ * Validation that this instance has all the required properties configured.
591
591
*
592
592
* @throws AntiMattr\MongoDB\Migrations\Exception\ConfigurationValidationException
593
593
*/
@@ -641,6 +641,5 @@ public function getDetailsMap()
641
641
'num_available_migrations ' => $ numAvailableMigrations ,
642
642
'num_new_migrations ' => $ numNewMigrations ,
643
643
);
644
-
645
644
}
646
645
}
0 commit comments