• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

aimeos / aimeos-base / 9a88e0a7-980e-437e-88ad-cb0e15106d32

07 Oct 2023 07:33AM UTC coverage: 88.407% (-0.3%) from 88.685%
9a88e0a7-980e-437e-88ad-cb0e15106d32

push

circleci

web-flow
[BUG] php 8.2 object type casting to int (#2)

1 of 1 new or added line in 1 file covered. (100.0%)

1693 of 1915 relevant lines covered (88.41%)

6.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/DB/Statement/Iface.php
1
<?php
2

3
/**
4
 * @license LGPLv3, https://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2015-2023
6
 * @package Base
7
 * @subpackage DB
8
 */
9

10

11
namespace Aimeos\Base\DB\Statement;
12

13

14
/**
15
 * Required methods for all database statement objects.
16
 *
17
 * @package Base
18
 * @subpackage DB
19
 */
20
interface Iface
21
{
22
        /**
23
         * Binds a value to a parameter in the statement.
24
         *
25
         * @param int $position Position index of the placeholder
26
         * @param mixed $value Value which should be bound to the placeholder
27
         * @param int $type Type of given value defined in \Aimeos\Base\DB\Stmt\Base as constant
28
         * @return \Aimeos\Base\DB\Statement\Iface Statement instance for method chaining
29
         */
30
        public function bind( int $position, $value, int $type = \Aimeos\Base\DB\Statement\Base::PARAM_STR ) : \Aimeos\Base\DB\Statement\Iface;
×
31

32
        /**
33
         * Executes the statement.
34
         *
35
         * @return \Aimeos\Base\DB\Result\Iface Result object
36
         */
37
        public function execute() : \Aimeos\Base\DB\Result\Iface;
38
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc