| @@ 110-119 (lines=10) @@ | ||
| 107 | ); |
|
| 108 | } |
|
| 109 | ||
| 110 | private function getPdfDocument() |
|
| 111 | { |
|
| 112 | return [ |
|
| 113 | 'signing_purpose' => '', |
|
| 114 | 'contact' => '', |
|
| 115 | 'reason' => '', |
|
| 116 | 'location' => '', |
|
| 117 | 'files' => [], |
|
| 118 | ]; |
|
| 119 | } |
|
| 120 | } |
|
| 121 | ||
| @@ 91-101 (lines=11) @@ | ||
| 88 | )); |
|
| 89 | } |
|
| 90 | ||
| 91 | private function getDocumentParams() |
|
| 92 | { |
|
| 93 | return [ |
|
| 94 | 'contact' => 'Ponas Testuotojas', |
|
| 95 | 'reason' => 'Dokumento asirašymas', |
|
| 96 | 'location' => 'Vilnius', |
|
| 97 | 'files' => [ |
|
| 98 | __DIR__ . '/../data/document.pdf', |
|
| 99 | ] |
|
| 100 | ]; |
|
| 101 | } |
|
| 102 | } |
|
| 103 | ||
| @@ 80-90 (lines=11) @@ | ||
| 77 | )); |
|
| 78 | } |
|
| 79 | ||
| 80 | private function getDocumentParams() |
|
| 81 | { |
|
| 82 | return [ |
|
| 83 | 'files' => [ |
|
| 84 | __DIR__.'/../data/document.pdf', |
|
| 85 | ], |
|
| 86 | 'contact' => 'Ponas Testuotojas', |
|
| 87 | 'reason' => 'Pasirašymas', |
|
| 88 | 'location' => 'Vilnius', |
|
| 89 | ]; |
|
| 90 | } |
|
| 91 | } |
|
| 92 | ||
| @@ 25-35 (lines=11) @@ | ||
| 22 | return $result; |
|
| 23 | } |
|
| 24 | ||
| 25 | private function getDocumentParams() |
|
| 26 | { |
|
| 27 | return [ |
|
| 28 | 'contact' => 'Ponas Testuotojas', |
|
| 29 | 'reason' => 'Elektroninis spaudas', |
|
| 30 | 'location' => 'Vilnius', |
|
| 31 | 'files' => [ |
|
| 32 | __DIR__ . '/../data/document.pdf', |
|
| 33 | ] |
|
| 34 | ]; |
|
| 35 | } |
|
| 36 | } |
|
| 37 | ||