File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 99
99
100
100
$ textField = new TextField ();
101
101
$ signatureField ->setFileIndex (0 );
102
+ $ textField ->setSigner (1 );
103
+ $ textField ->setReadOnly (0 );
102
104
$ textField ->setPage (1 );
103
105
$ textField ->setX (10 );
104
106
$ textField ->setY (50 );
Original file line number Diff line number Diff line change @@ -36,16 +36,16 @@ trait Readable {
36
36
37
37
/**
38
38
* Determines if the FormField is writable or not
39
- * @var integer $readOnly
39
+ * @var integer $readonly
40
40
* @Type("integer")
41
41
*/
42
- private $ readOnly ;
42
+ private $ readonly ;
43
43
44
- public function setReadOnly ( $ readOnly ) {
45
- $ this ->readOnly = !!$ readOnly ;
44
+ public function setReadonly ( $ readonly ) {
45
+ $ this ->readonly = !!$ readonly ;
46
46
}
47
47
48
- public function getReadOnly () {
49
- return !!$ this ->readOnly ;
48
+ public function getReadonly () {
49
+ return !!$ this ->readonly ;
50
50
}
51
51
}
You can’t perform that action at this time.
0 commit comments