Type hinting binds function arguments to specific objects or strongly types them.
0
votes
1answer
58 views
C#, Method creates a list but is not of type list?
Coming from PHP I am not use to assigning or returning specific types because PHP really doesn't care. But Coming back to the world of Java and C# these languages do care, when you say pass me this ...
1
vote
2answers
52 views
how is it that PDO can have methods with typed string parameters, but I can't do this in my own functions?
If I create an instance of PDO and then call PDO->Quote('test') it works no problems.
If I look at the defination of the PDO Quote method it looks like this:
/**
* Quotes a string for use in a ...
0
votes
2answers
65 views
PHP function parameter with callable hint… can it be NULL?
I would like to have a PHP function which accepts a parameter A, which I have given the type hint callable. Trouble is in some situations I would like to be able to pass NULL or something like that, ...
0
votes
1answer
23 views
Typehinting traversable objects
Let's say you are building an API that other people will work with.
And you use typehinting a lot for functions, like function foo(array $arg){...}. This forces the argument to be an array, so passing ...
0
votes
0answers
15 views
PHP Type hinting fails silently [duplicate]
I am trying to integrate PHP type hinting into a new project. I really like the fact to introduce some type checking for functions. Type hinting works perfectly as long as I am not calling a function ...
0
votes
3answers
27 views
casting vars in function calls
So if I build a class...
class Foo {
public $_string;
public function($sString = 'new string') {
$this->_string = $sString;
}
}
I would like to forcibly say that $sString is ...
0
votes
2answers
153 views
PHP OOP Shopping Cart design/type hinting advice
I've created a my first class, a shopping cart class. It's great and does all that I need it to. However, and there is always an however,...
I've read a lot about type hinting and been advised to ...
4
votes
1answer
89 views
Can't type hint a local with a primitive initializer
Could someone explain me this error:
user> (let [^int i 3] i)
CompilerException java.lang.UnsupportedOperationException: Can't type hint a local with a primitive initializer, ...
2
votes
5answers
94 views
Type hinting in php
So I found this example, I'm learning php oop and I wanted to ask what is the meaning and what it does the argument ShopProduct in method addProduct?
abstract class ShopProductWriter {
protected ...
0
votes
2answers
116 views
PHP 5 type hinting (passing array of objects of type A to the function)
I have a function that takes argument of type A (in PHP 5):
function f1(A a){...}
I also have an array that I decode from $_POST['val'] value and send it to some other function f2:
$array1 = ...
2
votes
2answers
109 views
PHP Type hinting to allow Array or ArrayAccess
Is it possible to allow an Array or an object that implements ArrayAccess?
For example:
class Config implements ArrayAccess {
...
}
class I_Use_A_Config
{
public function __construct(Array ...
0
votes
2answers
145 views
How to declare String only in PHP method argument? [duplicate]
I'm trying to use this method :
public function setMessage(string $message){
$this->message = $message;
}
Then I get this error :
Catchable fatal error: Argument 1 passed to ...
3
votes
2answers
61 views
PHP type hinting error?
I just got this Fatal Error
Catchable fatal error: Argument 1 passed to File::__construct() must be an instance of integer, integer given, called in /home/radu/php_projects/audio_player/index.php on ...
3
votes
3answers
84 views
Call a PHP method while ignoring type-hinting on parameters
Given:
class Foo {
private $bar;
public function setBar(Bar $bar) {
$this->bar = $bar;
}
}
Is there any way to call setBar() with a parameter that is not an instance of ...
5
votes
3answers
173 views
cannot pass null argument when using type hinting
The following code :
<?php
class Type {
}
function foo(Type $t) {
}
foo(null);
?>
failed at run time :
PHP Fatal error: Argument 1 passed to foo() must not be ...
1
vote
0answers
105 views
Extending type-hinting for PHP
Is it possible to extend the type-hinting with another documentor tag in Netbeans?
I'm looking for a way to extend the type-hinting with a @scope tag that would allow for includeed files to gain ...
2
votes
1answer
60 views
Netbeans type-hinting inside of an include
So the following is a weird issue and while I'm sure people are going to accuse me of bad practice when it comes to how this behavior is happening, for the sake of the project I'm working on, this is ...
3
votes
1answer
141 views
PHP type-hinting traits [closed]
I have a trait. For the sake of creativity, let's call this trait Trait:
trait Trait{
static function treat($instance){
// treat that trait instance with care
}
}
Now, I ...
0
votes
4answers
104 views
PHP: how to force property of method to be integer?
My current way:
class A {
public function function_b($myint) {
if (!is_numeric($myint)) return false;
// code ...
}
}
I would like to abandon the function is_numeric() like ...
10
votes
1answer
284 views
Generating Clojure code with type hints
I'm trying to generate some Clojure code with type hints, however the type hints seem to disappear whenever I build some code (they also do't function when the code is compiled)
e.g.
`(let ...
7
votes
3answers
488 views
Fast complex number arithmetic in Clojure
I was implementing some basic complex number arithmetic in Clojure, and noticed that it was about 10 times slower than roughly equivalent Java code, even with type hints.
Compare:
(defn plus ...
1
vote
2answers
201 views
PHP: constant as variable in function
I'm trying to use constant as a function paramter, is it possible to check type of this constant.
Example of what I want:
class ApiError {
const INVALID_REQUEST = 200;
}
class Response {
public ...
0
votes
2answers
179 views
get value of private var in a class through typehinted object to assign it in php 5.3
I have been reading Rafactoring by Martin Fowler and in the beginning of the book he uses an example application (written in Java), which I am trying to convert over to PHP for training purposes. (I ...
0
votes
1answer
375 views
Why type hinting based on method return type doesn't work in PhpStorm?
I'm switching from Eclipse to PhpStorm and noticed that I won't get type hinting in this code:
class Bar{
public function hintMe(){...}
}
class Foo{
private $bars = array();
/**
* ...
10
votes
2answers
2k views
Type Hinting: Default Parameters
Type Hinting
PHP 5 introduces Type Hinting. Functions are now able to force parameters to be objects (by specifying the name of the class in the function prototype) or arrays (since PHP 5.1). ...
5
votes
0answers
737 views
PHP string type-hinting [closed]
Why does PHP only support type hinting for arrays and objects? I want to use a type hint like the following:
protected function addServiceToken(string $token)
{
if(!array_key_exists($token, ...
0
votes
1answer
131 views
Is there an OOP language with optional type hinting?
Basically I'm looking for something similar to PHP, OOP, and with type hinting for all data types (in PHP you can't type-hint integers, strings, floats, nor bools, and they are not classes).
Any ...
1
vote
5answers
595 views
Type hinting for any object
I've been working on code that's intended to be used with objects, without really caring what the kidn of object is. I wanted to type hint that the method being written expected an object of any ...
5
votes
2answers
287 views
type hinting and the reason(s) behind their limitations
Are object and array really the only types allowed for type hinting?
Plus, they state in documentation that standard types string and int cannot be type hinted also.
And that makes me more curious. ...
5
votes
2answers
2k views
How to code autocompletion in python?
I'd like to code autocompletion in Linux terminal. The code should work as follows.
It has a list of strings (e.g. "hello, "hi", "how are you", "goodbye", "great", ...).
In terminal the user will ...
-1
votes
5answers
67 views
What happens in this code block during php oop?
Could someone please explain the third line where Request and $request is used. It would be great if you could provide me a link having an explanation of the same? I just want to know what is ...
6
votes
2answers
429 views
Clojure defmacro loses metadata
I am trying to create a little Clojure macro that defs a String with a type hint:
(defmacro def-string [name value]
`(def ^String ~name ~value))
(def-string db-host-option "db-host")
When I ...
2
votes
1answer
160 views
Why Does PHP's Type Hinting Think My Class is a String?
I'm working on a PHP class that I wrote. Its setColour() method typehints for an instance of another class of mine, Colour.
I'm doing this:
$colour = new Colour($updates->colour);
echo ...
0
votes
1answer
199 views
Adding a type hint to a Clojure gen-class state access
I am writing a Clojure class using gen-class. I have a "state" field that I am trying to access in the following code:
(ns com.example.sparetime.DateButton
(:gen-class
:extends ...
2
votes
2answers
479 views
Type hinting return value with ^ or :tag meta?
The two seem to be doing the same thing in Clojure. Which syntax is canonical?
(defn a ^int [] 4)
(defn b ^{:tag int} [] 4)
I hope it's a since it's shorter.
0
votes
1answer
86 views
PHP5 what is the use case of type hiting in php
function(myCar $cars)
In PHP5, type hinting is a specifying class name before object variable in a function parameters.
I know what is type hinting, but what is the exact use case in PHP5?
0
votes
1answer
478 views
Variadic functions and type-hinting in PHP
Quick one:
Is there any way to enforce types for variadic functions in PHP? I'm assuming not, however maybe I've missed something.
As of now, I'm just forcing a single required argument of the ...
11
votes
2answers
1k views
Can you hint an array's items type?
This question is linked to this one :
Is it possible to hint the type of the items inside a returned array ?
e.g. :
/**
* MyFunction does a lot of things
*
* @param TClass1 $var1
* @param ...
2
votes
2answers
95 views
How to make sure object method returns expected object?
I am trying to use DI to put one object into another. This is easy using an interface and type hinting.
The problem is that the object I am injecting returns another object with one of the expected ...
2
votes
2answers
536 views
Way to verify if variable is a valid GD image resource?
I have a class that accepts a GD image resource as one of its arguments. As far as I know, there is no way to type hint this since it is a resource and not an object. Is there a way to validate ...
5
votes
5answers
3k views
PHP type-hinting to primitive values?
I'd like to know whether one can type-hint a method to expect primitive types?
Something like this:
public function someMethod(string $str)
or
private function anotherMethod(int $num)
the same ...
0
votes
1answer
65 views
strategy for autocompletion of skeleton code
Consider this use case scenario: I wish to auto complete and provide the skeleton for code constructs like for loop and if else statements. How can I go about doing it?
the user writes this line in ...
1
vote
2answers
717 views
Type Hinting For Multiple Unrelated Interfaces
Is there a way in php to type hint for two different, unrelated interfaces? For example:
interface errorable {
function error($msg);
}
interface recordable {
ssh_for_recorder();
}
class ...
3
votes
1answer
266 views
Clojure - How to check if type hints in protocols are correct?
How to check if I the type hints I have put to my code are correct?
It seems like even if I put wrong type hints it works without any warnings:
=> (defprotocol Qqq (^Qwerty qqq [this ^String q]))
...
3
votes
2answers
304 views
Clojure type hint for Map.Entry
What is the syntax for a type hint for java.util.Map.Entry, a nested static inner class, in Clojure 1.2?
I tried both ^Map/Entry and ^Map.Entry, and neither will compile.
9
votes
1answer
198 views
How to achieve a recursive deftype
I'm curious as to how to do a Clojure deftype that contains a reference to itself, e.g.
(deftype BinaryTree [^BinaryTree left ^BinaryTree right])
This doesn't work... however I see no intrinsic ...
2
votes
1answer
496 views
PHP interface implementation rejects subclasses on parameters
consider this:
class A{}
class B extends A{}
interface I{
// expects object instanceof A
function doSomething(A $a);
}
class C implements I
{
// fails ????
function doSomething(B $b){}
}
In ...
2
votes
2answers
607 views
Why is “traditional” type-hinting not allowed in PHP?
Just discovered that type-hinting is allowed in PHP, but not for ints, strings, bools, or floats. Why do you suppose that is?
1
vote
2answers
474 views
Clojure warn-on-reflection and type hints
In the following code, I am getting a warning on reflection:
(ns com.example
(:import
[org.apache.commons.cli CommandLine Option Options PosixParser]))
(def *help-option* "help")
(def ...
1
vote
3answers
2k views
How to create hints in the textview edit box that go away when textview has focus?
How do I do this?
For example, when I create a question on stackoverflow, the Title text field has this in the edit TextView box:
what's your programming question? be specific.
As soon as you ...