Skip to content

Commit 8453b36

Browse files
committed
Latest PHPCSFixer applied
1 parent 8f189ed commit 8453b36

File tree

159 files changed

+936
-1075
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+936
-1075
lines changed

SOB/Cake/Record/Customer.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @property ?string $web_page MySQL type longtext
2222
* @property ?string $notes MySQL type longtext
2323
* @property ?string $attachments MySQL type longblob
24-
24+
*
2525
*/
2626
class Customer extends \Cake\ORM\Entity
2727
{
@@ -44,6 +44,5 @@ class Customer extends \Cake\ORM\Entity
4444
'web_page' => true,
4545
'notes' => true,
4646
'attachments' => true,
47-
];
48-
49-
}
47+
];
48+
}

SOB/Cake/Record/DateRecord.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @property string $dateDefaultNotNull MySQL type date
1111
* @property ?string $timestampDefaultCurrentNullable MySQL type timestamp
1212
* @property string $timestampDefaultCurrentNotNull MySQL type timestamp
13-
13+
*
1414
*/
1515
class DateRecord extends \Cake\ORM\Entity
1616
{
@@ -22,6 +22,5 @@ class DateRecord extends \Cake\ORM\Entity
2222
'dateDefaultNotNull' => true,
2323
'timestampDefaultCurrentNullable' => true,
2424
'timestampDefaultCurrentNotNull' => true,
25-
];
26-
27-
}
25+
];
26+
}

SOB/Cake/Record/Employee.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @property ?string $web_page MySQL type longtext
2222
* @property ?string $notes MySQL type longtext
2323
* @property ?string $attachments MySQL type longblob
24-
24+
*
2525
*/
2626
class Employee extends \Cake\ORM\Entity
2727
{
@@ -44,6 +44,5 @@ class Employee extends \Cake\ORM\Entity
4444
'web_page' => true,
4545
'notes' => true,
4646
'attachments' => true,
47-
];
48-
49-
}
47+
];
48+
}

SOB/Cake/Record/EmployeePrivilege.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $employee_id MySQL type integer
77
* @property int $privilege_id MySQL type integer
8-
8+
*
99
*/
1010
class EmployeePrivilege extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'employee_id' => true,
1414
'privilege_id' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/Image.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @property ?int $imageable_id MySQL type integer
88
* @property ?string $imageable_type MySQL type varchar(128)
99
* @property string $path MySQL type varchar(128)
10-
10+
*
1111
*/
1212
class Image extends \Cake\ORM\Entity
1313
{
@@ -16,6 +16,5 @@ class Image extends \Cake\ORM\Entity
1616
'imageable_id' => true,
1717
'imageable_type' => true,
1818
'path' => true,
19-
];
20-
21-
}
19+
];
20+
}

SOB/Cake/Record/InventoryTransaction.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* @property ?int $purchase_order_id MySQL type integer
1313
* @property ?int $order_id MySQL type integer
1414
* @property ?string $comments MySQL type varchar(255)
15-
15+
*
1616
*/
1717
class InventoryTransaction extends \Cake\ORM\Entity
1818
{
@@ -26,6 +26,5 @@ class InventoryTransaction extends \Cake\ORM\Entity
2626
'purchase_order_id' => true,
2727
'order_id' => true,
2828
'comments' => true,
29-
];
30-
31-
}
29+
];
30+
}

SOB/Cake/Record/InventoryTransactionType.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $inventory_transaction_type_id MySQL type integer
77
* @property string $inventory_transaction_type_name MySQL type varchar(50)
8-
8+
*
99
*/
1010
class InventoryTransactionType extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'inventory_transaction_type_id' => true,
1414
'inventory_transaction_type_name' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/Invoice.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @property ?float $tax MySQL type decimal(19,4)
1111
* @property ?float $shipping MySQL type decimal(19,4)
1212
* @property ?float $amount_due MySQL type decimal(19,4)
13-
13+
*
1414
*/
1515
class Invoice extends \Cake\ORM\Entity
1616
{
@@ -22,6 +22,5 @@ class Invoice extends \Cake\ORM\Entity
2222
'tax' => true,
2323
'shipping' => true,
2424
'amount_due' => true,
25-
];
26-
27-
}
25+
];
26+
}

SOB/Cake/Record/Migration.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $migrationId MySQL type int
77
* @property ?string $ran MySQL type timestamp
8-
8+
*
99
*/
1010
class Migration extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'migrationId' => true,
1414
'ran' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/Order.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @property ?float $tax_rate MySQL type double
2424
* @property ?int $order_tax_status_id MySQL type integer
2525
* @property ?int $order_status_id MySQL type integer
26-
26+
*
2727
*/
2828
class Order extends \Cake\ORM\Entity
2929
{
@@ -48,6 +48,5 @@ class Order extends \Cake\ORM\Entity
4848
'tax_rate' => true,
4949
'order_tax_status_id' => true,
5050
'order_status_id' => true,
51-
];
52-
53-
}
51+
];
52+
}

SOB/Cake/Record/OrderDetail.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @property ?string $date_allocated MySQL type datetime
1414
* @property ?int $purchase_order_id MySQL type integer
1515
* @property ?int $inventory_transaction_id MySQL type integer
16-
16+
*
1717
*/
1818
class OrderDetail extends \Cake\ORM\Entity
1919
{
@@ -28,6 +28,5 @@ class OrderDetail extends \Cake\ORM\Entity
2828
'date_allocated' => true,
2929
'purchase_order_id' => true,
3030
'inventory_transaction_id' => true,
31-
];
32-
33-
}
31+
];
32+
}

SOB/Cake/Record/OrderDetailStatus.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $order_detail_status_id MySQL type integer
77
* @property string $order_detail_status_name MySQL type varchar(50)
8-
8+
*
99
*/
1010
class OrderDetailStatus extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'order_detail_status_id' => true,
1414
'order_detail_status_name' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/OrderStatus.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $order_status_id MySQL type integer
77
* @property string $order_status_name MySQL type varchar(50)
8-
8+
*
99
*/
1010
class OrderStatus extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'order_status_id' => true,
1414
'order_status_name' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/OrderTaxStatus.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $order_tax_status_id MySQL type integer
77
* @property string $order_tax_status_name MySQL type varchar(50)
8-
8+
*
99
*/
1010
class OrderTaxStatus extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'order_tax_status_id' => true,
1414
'order_tax_status_name' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/Privilege.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $privilege_id MySQL type integer
77
* @property ?string $privilege MySQL type varchar(50)
8-
8+
*
99
*/
1010
class Privilege extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'privilege_id' => true,
1414
'privilege' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/Product.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @property ?int $minimum_reorder_quantity MySQL type integer
1717
* @property ?string $category MySQL type varchar(50)
1818
* @property ?string $attachments MySQL type longblob
19-
19+
*
2020
*/
2121
class Product extends \Cake\ORM\Entity
2222
{
@@ -34,6 +34,5 @@ class Product extends \Cake\ORM\Entity
3434
'minimum_reorder_quantity' => true,
3535
'category' => true,
3636
'attachments' => true,
37-
];
38-
39-
}
37+
];
38+
}

SOB/Cake/Record/ProductSupplier.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $product_id MySQL type integer
77
* @property int $supplier_id MySQL type integer
8-
8+
*
99
*/
1010
class ProductSupplier extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'product_id' => true,
1414
'supplier_id' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/PurchaseOrder.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @property ?int $approved_by MySQL type integer
2020
* @property ?string $approved_date MySQL type datetime
2121
* @property ?int $submitted_by MySQL type integer
22-
22+
*
2323
*/
2424
class PurchaseOrder extends \Cake\ORM\Entity
2525
{
@@ -40,6 +40,5 @@ class PurchaseOrder extends \Cake\ORM\Entity
4040
'approved_by' => true,
4141
'approved_date' => true,
4242
'submitted_by' => true,
43-
];
44-
45-
}
43+
];
44+
}

SOB/Cake/Record/PurchaseOrderDetail.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @property ?string $date_received MySQL type datetime
1212
* @property int $posted_to_inventory MySQL type integer
1313
* @property ?int $inventory_transaction_id MySQL type integer
14-
14+
*
1515
*/
1616
class PurchaseOrderDetail extends \Cake\ORM\Entity
1717
{
@@ -24,6 +24,5 @@ class PurchaseOrderDetail extends \Cake\ORM\Entity
2424
'date_received' => true,
2525
'posted_to_inventory' => true,
2626
'inventory_transaction_id' => true,
27-
];
28-
29-
}
27+
];
28+
}

SOB/Cake/Record/PurchaseOrderStatus.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
/**
66
* @property int $purchase_order_status_id MySQL type integer
77
* @property ?string $purchase_order_status_name MySQL type varchar(50)
8-
8+
*
99
*/
1010
class PurchaseOrderStatus extends \Cake\ORM\Entity
1111
{
1212
protected array $_accessible = [
1313
'purchase_order_status_id' => true,
1414
'purchase_order_status_name' => true,
15-
];
16-
17-
}
15+
];
16+
}

SOB/Cake/Record/SalesReport.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @property ?string $title MySQL type varchar(50)
99
* @property ?string $filter_row_source MySQL type longtext
1010
* @property int $default MySQL type integer
11-
11+
*
1212
*/
1313
class SalesReport extends \Cake\ORM\Entity
1414
{
@@ -18,6 +18,5 @@ class SalesReport extends \Cake\ORM\Entity
1818
'title' => true,
1919
'filter_row_source' => true,
2020
'default' => true,
21-
];
22-
23-
}
21+
];
22+
}

0 commit comments

Comments
 (0)