Browse Source

Fixed CS line length warnings

Corey Taylor 6 years ago
parent
commit
2bf81dc34a

+ 1 - 1
src/Database/Schema/TableSchema.php

@@ -529,7 +529,7 @@ class TableSchema implements TableSchemaInterface, SqlGeneratorInterface
      */
     public function primaryKey(): array
     {
-        deprecationWarning('`TableSchema::primaryKey()` is deprecated. Use `TableSchema::getPrimaryKey()` instead.');
+        deprecationWarning('`TableSchema::primaryKey()` is deprecated. Use `TableSchema::getPrimaryKey()`.');
 
         return $this->getPrimarykey();
     }

+ 1 - 1
src/View/Form/ArrayContext.php

@@ -107,7 +107,7 @@ class ArrayContext implements ContextInterface
      */
     public function primaryKey(): array
     {
-        deprecationWarning('`ArrayContext::primaryKey()` is deprecated. Use `ArrayContext::getPrimaryKey()` instead.');
+        deprecationWarning('`ArrayContext::primaryKey()` is deprecated. Use `ArrayContext::getPrimaryKey()`.');
 
         return $this->getPrimaryKey();
     }

+ 1 - 1
src/View/Form/EntityContext.php

@@ -181,7 +181,7 @@ class EntityContext implements ContextInterface
      */
     public function primaryKey(): array
     {
-        deprecationWarning('`EntityContext::primaryKey()` is deprecated. Use `EntityContext::getPrimaryKey()` instead.');
+        deprecationWarning('`EntityContext::primaryKey()` is deprecated. Use `EntityContext::getPrimaryKey()`.');
 
         return (array)$this->_tables[$this->_rootName]->getPrimaryKey();
     }

+ 1 - 1
src/View/Form/FormContext.php

@@ -64,7 +64,7 @@ class FormContext implements ContextInterface
      */
     public function primaryKey(): array
     {
-        deprecationWarning('`FormContext::primaryKey()` is deprecated. Use `FormContext::getPrimaryKey()` instead.');
+        deprecationWarning('`FormContext::primaryKey()` is deprecated. Use `FormContext::getPrimaryKey()`.');
 
         return [];
     }

+ 1 - 1
src/View/Form/NullContext.php

@@ -52,7 +52,7 @@ class NullContext implements ContextInterface
      */
     public function primaryKey(): array
     {
-        deprecationWarning('`NullContext::primaryKey()` is deprecated. Use `NullContext::getPrimaryKey()` instead.');
+        deprecationWarning('`NullContext::primaryKey()` is deprecated. Use `NullContext::getPrimaryKey()`.');
 
         return [];
     }