From f406e79bf17ca4301d90702df7edb4e30823990a Mon Sep 17 00:00:00 2001 From: Liam Morland <lkmorlan@uwaterloo.ca> Date: Fri, 31 May 2019 10:28:44 -0400 Subject: [PATCH] Coding standards --- fillpdf.module | 2 +- tests/FillPdfNodeTestCase.test | 2 +- tests/FillPdfWebformTestCase.test | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fillpdf.module b/fillpdf.module index c86da1e..5e28767 100644 --- a/fillpdf.module +++ b/fillpdf.module @@ -1642,7 +1642,7 @@ function fillpdf_fields_create_update($fid, $pdf_key, array &$record, $update = * $fillpdf directly. Possible values: url, stream. * * @return array|false - * The parsed fields. + * The parsed fields. */ function fillpdf_execute_parse($method, $fillpdf, $mode = 'url') { switch ($mode) { diff --git a/tests/FillPdfNodeTestCase.test b/tests/FillPdfNodeTestCase.test index e449453..811e2b0 100644 --- a/tests/FillPdfNodeTestCase.test +++ b/tests/FillPdfNodeTestCase.test @@ -80,7 +80,7 @@ class FillPdfNodeTestCase extends DrupalWebTestCase { /** * Test fillpdf_pdf_link() with a single node in legacy format. * - * fillpdf_pdf_link() accepts a single nid being passed in as $nids. We're + * Fillpdf_pdf_link() accepts a single nid being passed in as $nids. We're * therefore separately testing single entity cases in this legacy format. * All other cases are fully covered by testNodeLink(). */ diff --git a/tests/FillPdfWebformTestCase.test b/tests/FillPdfWebformTestCase.test index 7d9fdcd..ed32150 100644 --- a/tests/FillPdfWebformTestCase.test +++ b/tests/FillPdfWebformTestCase.test @@ -80,7 +80,7 @@ class FillPdfWebformTestCase extends DrupalWebTestCase { /** * Test fillpdf_pdf_link() with a single webform in legacy format. * - * fillpdf_pdf_link() accepts a single array of webform and submission being + * Fillpdf_pdf_link() accepts a single array of webform and submission being * passed in as $webform_arr. We're therefore separately testing single * webform cases in this legacy format. All other cases are fully covered * by testWebformLink(). @@ -95,7 +95,7 @@ class FillPdfWebformTestCase extends DrupalWebTestCase { 'nid' => $webform['webform']->nid, 'sid' => $webform['submission']->sid, ); - // fillpdf_pdf_link() also accepts a single webform + // fillpdf_pdf_link() also accepts a single webform. $output = rawurldecode(fillpdf_pdf_link(1, NULL, $webform_arr)); $this->assertEqual($expected, $output, t($this->message, array( -- GitLab