Skip to content
Snippets Groups Projects
Commit 0423ea3b authored by Liam Morland's avatar Liam Morland
Browse files

Issue #3426100: Make spelling corrections

parent 17a057c4
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ namespace Drupal\fillpdf;
* Represents a mapping between a PDF field and a merge value.
*
* Represents a mapping between a PDF field and a merge value (a value with
* which to fill in the field). This is a barebones base class intended to be
* which to fill in the field). This is a bare-bones base class intended to be
* subclassed and enhanced with additional properties and getter methods.
*
* FieldMapping objects are immutable; replace the value by calling the
......
......@@ -185,7 +185,7 @@ class FillPdfSettingsForm extends ConfigFormBase {
foreach ($map as $form_id => $file_uri) {
$fillpdf_form = $forms[$form_id];
$admin_title = current($fillpdf_form->get('admin_title')->getValue());
// @todo We can simpify this once an admin_title is #required,
// @todo We can simplify this once an admin_title is #required,
// see https://www.drupal.org/project/fillpdf/issues/3040776.
$link = Link::fromTextAndUrl($admin_title ?: "FillPDF form {$fillpdf_form->id()}", $fillpdf_form->toUrl());
$items[$form_id] = new FormattableMarkup("@fillpdf_form: {$file_uri}", ['@fillpdf_form' => $link->toString()]);
......
......@@ -47,7 +47,7 @@ class FillPdfServicePdfBackend extends PdfBackendBase {
* Make an XML-RPC request.
*
* @param string $method
* The method to call. Additional arguments are the paramters to the
* The method to call. Additional arguments are the parameters to the
* xmlrpc() call.
*
* @return object
......
......@@ -13,7 +13,7 @@ use Drupal\Core\Form\FormStateInterface;
*/
function fillpdf_test_form_fillpdf_settings_alter(array &$form, FormStateInterface $form_state, $form_id) {
// Add a (redundant) radio for our test backend, not knowing that the backend
// is autodetected. The label should be overwritten though.
// is auto-detected. The label should be overwritten though.
$form['backend']['#options']['test'] = 'Form-altered pass-through plugin for testing';
// Add a test setting to the form.
......
......@@ -216,7 +216,7 @@ class FillPdfSettingsFormTest extends BrowserTestBase {
*/
public function testBackendTest() {
// FillPDF is not yet configured.
// Go to the settings page and verify the autodetected 'test' backend is
// Go to the settings page and verify the auto-detected 'test' backend is
// present only once and with the form-altered label.
$this->drupalGet(Url::fromRoute('fillpdf.settings'));
$this->assertSession()->pageTextContainsOnce('plugin for testing');
......
......@@ -258,7 +258,7 @@ class HandlePdfControllerTest extends FillPdfUploadTestBase {
$this->configureFillPdf(['allowed_schemes' => ['private']]);
// Hit the generation route again. This time we should be redirected to the
// PDF file. Make sure no PHP error occured.
// PDF file. Make sure no PHP error occurred.
$this->drupalGet($fillpdf_route);
$this->assertSession()->addressEquals('/fillpdf');
$this->assertSession()->statusCodeEquals(200);
......@@ -312,7 +312,7 @@ class HandlePdfControllerTest extends FillPdfUploadTestBase {
$this->rebuildContainer();
// Hit the generation route again. This time we should be redirected to the
// PDF file. Make sure no PHP error occured.
// PDF file. Make sure no PHP error occurred.
$this->drupalGet($fillpdf_route);
$this->assertSession()->addressEquals('/fillpdf');
$this->assertSession()->statusCodeEquals(200);
......
......@@ -85,7 +85,7 @@ class PdfParseTest extends FillPdfTestBase {
$fillpdf_form->scheme = 'public';
$fillpdf_form->save();
// Populate an unflattened sample PDF file and do some checks.
// Populate a non-flattened sample PDF file and do some checks.
$fillpdf_route = Url::fromRoute('fillpdf.populate_pdf', [], [
'query' => [
'fid' => $fillpdf_form->id(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment