diff --git a/core/modules/contextual/contextual.api.php b/core/modules/contextual/contextual.api.php
index d972045..7bc4a4f 100644
--- a/core/modules/contextual/contextual.api.php
+++ b/core/modules/contextual/contextual.api.php
@@ -18,12 +18,13 @@
  * is passed in by reference. Further links may be added or existing links can
  * be altered.
  *
- * @param $element
+ * @param array $element
  *   A renderable array representing the contextual links.
- * @param $items
+ * @param array $items
  *   An associative array containing the original contextual link items, as
  *   generated by
- *   \Drupal\Core\Menu\ContextualLinkManagerInterface::getContextualLinksArrayByGroup(),
+ *   \Drupal\Core\Menu\ContextualLinkManagerInterface
+ *      ::getContextualLinksArrayByGroup(),
  *   which were used to build $element['#links'].
  *
  * @see hook_contextual_links_alter()
diff --git a/core/modules/contextual/css/contextual.icons.css b/core/modules/contextual/css/contextual.icons.css
index 2a755ca..7b2bd6e 100644
--- a/core/modules/contextual/css/contextual.icons.css
+++ b/core/modules/contextual/css/contextual.icons.css
@@ -34,8 +34,8 @@
   /* Override the .focusable height: auto */
   width: 28px !important;
   text-indent: -9999px;
-
 }
+
 .no-svg .contextual .trigger {
   background-image: url("../../../misc/icons/bebebe/pencil.png");
 }
diff --git a/core/modules/contextual/css/contextual.toolbar.css b/core/modules/contextual/css/contextual.toolbar.css
index 88442a4..320aafb 100644
--- a/core/modules/contextual/css/contextual.toolbar.css
+++ b/core/modules/contextual/css/contextual.toolbar.css
@@ -23,10 +23,10 @@
   padding-right: 1.3333em;
 }
 .toolbar .toolbar-bar .contextual-toolbar-tab button.active {
-  background-image:-moz-linear-gradient(rgb(78,159,234) 0%,rgb(69,132,221) 100%);
-  background-image:-webkit-gradient(linear,color-stop(0, rgb(78,159,234)),color-stop(1, rgb(69,132,221)));
+  background-image: -moz-linear-gradient(rgb(78,159,234) 0%,rgb(69,132,221) 100%);
+  background-image: -webkit-gradient(linear,color-stop(0, rgb(78,159,234)),color-stop(1, rgb(69,132,221)));
   background-image: -webkit-linear-gradient(top,  rgb(78,159,234) 0%, rgb(69,132,221) 100%);
-  background-image:linear-gradient(rgb(78,159,234) 0%,rgb(69,132,221) 100%);
+  background-image: linear-gradient(rgb(78,159,234) 0%,rgb(69,132,221) 100%);
 }
 
 /* @todo get rid of this declaration by making toolbar.module's CSS less specific */
diff --git a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
index 2f6004a..c7aa0f8 100644
--- a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
+++ b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
@@ -27,6 +27,9 @@ public function usesGroupBy() {
     return FALSE;
   }
 
+  /**
+   * {@inheritdoc}
+   */
   protected function defineOptions() {
     $options = parent::defineOptions();
 
@@ -36,6 +39,9 @@ protected function defineOptions() {
     return $options;
   }
 
+  /**
+   * {@inheritdoc}
+   */
   public function buildOptionsForm(&$form, &$form_state) {
     $all_fields = $this->view->display_handler->getFieldLabels();
     // Offer to include only those fields that follow this one.
@@ -58,7 +64,9 @@ public function buildOptionsForm(&$form, &$form_state) {
       '#default_value' => $this->options['destination'],
     );
   }
-
+  /**
+   * {@inheritdoc}
+   */
   public function preRender(&$values) {
     // Add a row plugin css class for the contextual link.
     $class = 'contextual-region';
@@ -116,8 +124,8 @@ public function render(ResultRow $values) {
           array(),
           array(
             'contextual-views-field-links' => drupal_encode_path(Json::encode($links)),
-          )
-        )
+          ),
+        ),
       );
 
       $element = array(
@@ -130,7 +138,9 @@ public function render(ResultRow $values) {
       return '';
     }
   }
-
-  public function query() { }
+  /**
+   * {@inheritdoc}
+   */
+  public function query() {}
 
 }
diff --git a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php b/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php
index 4e1e6d0..375849f 100644
--- a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php
+++ b/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php
@@ -23,6 +23,9 @@ class ContextualDynamicContextTest extends WebTestBase {
    */
   public static $modules = array('contextual', 'node', 'views', 'views_ui');
 
+  /**
+   * {@inheritdoc}
+   */
   public static function getInfo() {
     return array(
       'name' => 'Contextual links on node lists',
@@ -31,13 +34,20 @@ public static function getInfo() {
     );
   }
 
-  function setUp() {
+  /**
+   * {@inheritdoc}
+   */
+  public function setUp() {
     parent::setUp();
 
     $this->drupalCreateContentType(array('type' => 'page', 'name' => 'Basic page'));
     $this->drupalCreateContentType(array('type' => 'article', 'name' => 'Article'));
 
-    $this->editor_user = $this->drupalCreateUser(array('access content', 'access contextual links', 'edit any article content'));
+    $this->editor_user = $this->drupalCreateUser(array(
+      'access content',
+      'access contextual links',
+      'edit any article content',
+    ));
     $this->authenticated_user = $this->drupalCreateUser(array('access content', 'access contextual links'));
     $this->anonymous_user = $this->drupalCreateUser(array('access content'));
   }
@@ -48,7 +58,7 @@ function setUp() {
    * Ensures that contextual link placeholders always exist, even if the user is
    * not allowed to use contextual links.
    */
-  function testDifferentPermissions() {
+  public function testDifferentPermissions() {
     $this->drupalLogin($this->editor_user);
 
     // Create three nodes in the following order:
@@ -120,18 +130,20 @@ function testDifferentPermissions() {
    *   A contextual link id.
    *
    * @return bool
+   *   returns TRUE if assertContextualLinkPlaceHolder is successful.
    */
   protected function assertContextualLinkPlaceHolder($id) {
     $this->assertRaw('<div' . new Attribute(array('data-contextual-id' => $id)) . '></div>', format_string('Contextual link placeholder with id @id exists.', array('@id' => $id)));
   }
 
   /**
-   * Asserts that a contextual link placeholder with the given id does not exist.
+   * Asserts that a contextual link placeholder with given id does not exist.
    *
    * @param string $id
    *   A contextual link id.
    *
    * @return bool
+   *   returns TRUE if assertNoContextualLinkPlaceHolder is successful.
    */
   protected function assertNoContextualLinkPlaceHolder($id) {
     $this->assertNoRaw('<div' . new Attribute(array('data-contextual-id' => $id)) . '></div>', format_string('Contextual link placeholder with id @id does not exist.', array('@id' => $id)));
diff --git a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualUnitTest.php b/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualUnitTest.php
index fcb3a03..01ba2f4 100644
--- a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualUnitTest.php
+++ b/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualUnitTest.php
@@ -21,6 +21,9 @@ class ContextualUnitTest extends DrupalUnitTestBase {
    */
   public static $modules = array('contextual');
 
+  /**
+   * {@inheritdoc}
+   */
   public static function getInfo() {
     return array(
       'name' => 'Conversion to and from "contextual id"s (for placeholders)',
@@ -30,9 +33,9 @@ public static function getInfo() {
   }
 
   /**
-   * Provides testcases for testContextualLinksToId() and
+   * Provides testcases for testContextualLinksToId() and.
    */
-  function _contextual_links_id_testcases() {
+  public function contextualLinksIdTestcases() {
     // Test branch conditions:
     // - one group.
     // - one dynamic path argument.
@@ -43,7 +46,7 @@ function _contextual_links_id_testcases() {
           'route_parameters' => array(
             'node' => '14031991',
           ),
-          'metadata' => array()
+          'metadata' => array(),
         ),
       ),
       'id' => 'node:node=14031991:',
@@ -56,7 +59,7 @@ function _contextual_links_id_testcases() {
     $tests[] = array(
       'links' => array(
         'foo' => array(
-          'route_parameters'=> array(
+          'route_parameters' => array(
             'bar',
             'key' => 'baz',
             'qux',
@@ -75,7 +78,7 @@ function _contextual_links_id_testcases() {
       'links' => array(
         'views_ui_edit' => array(
           'route_parameters' => array(
-            'view' => 'frontpage'
+            'view' => 'frontpage',
           ),
           'metadata' => array(
             'location' => 'page',
@@ -119,8 +122,8 @@ function _contextual_links_id_testcases() {
   /**
    * Tests _contextual_links_to_id().
    */
-  function testContextualLinksToId() {
-    $tests = $this->_contextual_links_id_testcases();
+  public function testContextualLinksToId() {
+    $tests = $this->contextualLinksIdTestcases();
     foreach ($tests as $test) {
       $this->assertIdentical(_contextual_links_to_id($test['links']), $test['id']);
     }
@@ -129,8 +132,8 @@ function testContextualLinksToId() {
   /**
    * Tests _contextual_id_to_links().
    */
-  function testContextualIdToLinks() {
-    $tests = $this->_contextual_links_id_testcases();
+  public function testContextualIdToLinks() {
+    $tests = $this->contextualLinksIdTestcases();
     foreach ($tests as $test) {
       $this->assertIdentical(_contextual_id_to_links($test['id']), $test['links']);
     }
